Created
March 17, 2014 17:21
-
-
Save bhubbard/9603961 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
################################################################################ | |
// Hide Retail Therapy Custom Post Types | |
################################################################################ | |
function remove_retailtherapy_menu_links() { | |
remove_menu_page( 'edit.php?post_type=features' ); | |
remove_menu_page( 'edit.php?post_type=partners' ); | |
remove_menu_page( 'edit.php?post_type=portfolio' ); | |
remove_menu_page( 'edit.php?post_type=services' ); | |
remove_menu_page( 'edit.php?post_type=slider' ); | |
remove_menu_page( 'edit.php?post_type=team' ); | |
remove_menu_page( 'edit.php?post_type=testimonials' ); | |
} | |
add_action( 'admin_menu', 'remove_retailtherapy_menu_links', 9999 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment