-
Home
-
Lewe ChordPress – ChordPro Text Formatter
- Tips
How to Hide Lewe ChordPress Admin Menus
function plt_hide_chordpress_menus() {
//Hide "Guitar Chords".
remove_menu_page('edit.php?post_type=guitar_chord');
//Hide "Guitar Chords → All Chords".
remove_submenu_page('edit.php?post_type=guitar_chord', 'edit.php?post_type=guitar_chord');
//Hide "Guitar Chords → Add New Chord".
remove_submenu_page('edit.php?post_type=guitar_chord', 'post-new.php?post_type=guitar_chord');
//Hide "Guitar Chords → Categories".
remove_submenu_page('edit.php?post_type=guitar_chord', 'edit-tags.php?taxonomy=category&post_type=guitar_chord');
//Hide "Guitar Chords → Tags".
remove_submenu_page('edit.php?post_type=guitar_chord', 'edit-tags.php?taxonomy=post_tag&post_type=guitar_chord');
//Hide "ChordPress".
remove_menu_page('chordpress_admin_menu');
//Hide "ChordPress → Options".
remove_submenu_page('chordpress_admin_menu', 'chordpress/admin/partials/chordpress-admin-options.php');
//Hide "ChordPress → Guitar Chords".
remove_submenu_page('chordpress_admin_menu', 'edit.php?post_type=guitar_chord');
}
add_action('admin_menu', 'plt_hide_chordpress_menus', 11);
Where do I put this code?
How to Hide the "Guitar Chord Details" Meta Box
function plt_hide_chordpress_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Guitar Chord Details" meta box.
remove_meta_box('guitar_chord_meta_box', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_chordpress_metaboxes', 20);