Recent

crp_show_meta_boxfilter

crp_show_meta_box

Filters whether to show the Contextual Related Posts meta box.

Type: filter
Since: 3.5.0
Source: includes/admin/class-metabox.php line 63

Parameters

Type Name Description
bool $show_meta_box Whether the Contextual Related Posts meta box should be shown. Default true.

Usage

add_filter( 'crp_show_meta_box', function($show_meta_box) {
    // ...
    return $show_meta_box;
} );