Created
February 22, 2015 05:54
-
-
Save halgatewood/ac4d60f485ec49d77d15 to your computer and use it in GitHub Desktop.
Remove the Comments Tab from the WordPress admin.
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
| // REMOVE COMMENTS TAB IN WORDPRESS ADMIN | |
| function hg_remove_comment_menu() { remove_menu_page('edit-comments.php'); } | |
| add_action('admin_menu', 'hg_remove_comment_menu'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment