-
Home
-
Restricted content based on purchase
- Tips
How to Hide the "Restricted content" Admin Menu
function plt_hide_restricted_content_based_on_purchase_menus() {
//Hide the "Restricted content" menu.
remove_menu_page('resconbop_options');
}
add_action('admin_menu', 'plt_hide_restricted_content_based_on_purchase_menus', 11);
Where do I put this code?
How to Hide the "Restricted content options" Meta Box
function plt_hide_restricted_content_based_on_purchase_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Restricted content options" meta box.
remove_meta_box('post_options', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_restricted_content_based_on_purchase_metaboxes', 20);