-
Home
-
Inline Related Posts
- Tips
How to Hide the "Inline Related Posts" Admin Menu
function plt_hide_intelly_related_posts_menus() {
//Hide the "Settings → Inline Related Posts" menu.
remove_submenu_page('options-general.php', 'intelly-related-posts');
}
add_action('admin_menu', 'plt_hide_intelly_related_posts_menus', 11);
Where do I put this code?
How to Hide the "Related Posts by IntellyWP" Meta Box
function plt_hide_intelly_related_posts_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Related Posts by IntellyWP" meta box.
remove_meta_box('irp_sectionid', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_intelly_related_posts_metaboxes', 20);