Recent

tptn_show_meta_box filter

tptn_show_meta_box

Filters whether to show the Top 10 meta box.

Type: filter
Since: 3.1.0
Source: includes/admin/class-metabox.php line 62

Parameters

TypeNameDescription
bool$show_meta_boxWhether the Top 10 meta box should be shown. Default true.

Usage

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