-
Home
-
RSS Feed Pro
- Tips
How to Hide RSS Feed Pro Admin Menus
function plt_hide_rss_feed_pro_menus() {
//Hide the "RSS Archives" menu.
remove_menu_page('edit.php?post_type=rssfp-shortcode');
//Hide the "RSS Archives → All RSS Archives" menu.
remove_submenu_page('edit.php?post_type=rssfp-shortcode', 'edit.php?post_type=rssfp-shortcode');
//Hide the "RSS Archives → Add New RSS Archive" menu.
remove_submenu_page('edit.php?post_type=rssfp-shortcode', 'post-new.php?post_type=rssfp-shortcode');
}
add_action('admin_menu', 'plt_hide_rss_feed_pro_menus', 15);
Where do I put this code?
How to Hide the "Shortcode Details" Meta Box
function plt_hide_rss_feed_pro_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Shortcode Details" meta box.
remove_meta_box('rssfp-id', $screen->id, 'advanced');
}
add_action('add_meta_boxes', 'plt_hide_rss_feed_pro_metaboxes', 20);