-
Home
-
Rich Text Excerpts
- Tips
How to Hide the "Rich Text Excerpts" Admin Menu
function plt_hide_rich_text_excerpts_menus() {
//Hide the "Settings → Rich Text Excerpts" menu.
remove_submenu_page('options-general.php', 'rich_text_excerpts_options');
}
add_action('admin_menu', 'plt_hide_rich_text_excerpts_menus', 11);
Where do I put this code?
How to Hide the "Excerpt" Meta Box
function plt_hide_rich_text_excerpts_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Excerpt" meta box.
remove_meta_box('richtext_excerpt_editor_metabox', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_rich_text_excerpts_metaboxes', 20);