rwmb_meta_box_settings

rwmb_meta_box_settings

Hook Type: filter

See hook in core

Displaying hooks found in version: wp-stateless.4.1.3

apply_filters('rwmb_meta_box_settings') is found 1 times:

  • /vendor/wpmetabox/meta-box/inc/meta-box.php line 55
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
        $this->meta_box = $meta_box;
     
        $this->meta_box['fields'] = static::normalize_fields( $meta_box['fields'], $this->get_storage() );
     
        $this->meta_box = apply_filters( 'rwmb_meta_box_settings', $this->meta_box );
     
        if ( $this->is_shown() ) {
            $this->global_hooks();
            $this->object_hooks();
        }
    }