Created
March 2, 2015 17:14
-
-
Save alkrauss48/73b6f759046e4957315d to your computer and use it in GitHub Desktop.
Remove Comments in Wordpress - Completely
This file contains 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 | |
include 'remove-comments.php' |
This file contains 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 | |
// Removes from admin menu | |
add_action( 'admin_menu', 'my_remove_admin_menus' ); | |
function my_remove_admin_menus() { | |
remove_menu_page( 'edit-comments.php' ); | |
} | |
// Removes from post and pages | |
add_action('init', 'remove_comment_support', 100); | |
function remove_comment_support() { | |
remove_post_type_support( 'post', 'comments' ); | |
remove_post_type_support( 'page', 'comments' ); | |
} | |
// Removes from admin bar | |
function mytheme_admin_bar_render() { | |
global $wp_admin_bar; | |
$wp_admin_bar->remove_menu('comments'); | |
} | |
add_action( 'wp_before_admin_bar_render', 'mytheme_admin_bar_render' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment