mc_show_custom_posts_in_menu - joedolson/my-calendar GitHub Wiki

Should My Calendar post types be shown in admin menus. Default false.

Auto-generated Example

add_filter(
   'mc_show_custom_posts_in_menu',
    function( bool $show ) {
        // Your code here.
        return $show;
    }
);

Parameters

  • bool $show True to show in menus.

Returns

bool

Files

apply_filters( 'mc_show_custom_posts_in_menu', false )

← All Hooks