Skip to content

Instantly share code, notes, and snippets.

@joeguilmette
Forked from alkrauss48/functions.php
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joeguilmette/abbc3a5e09e3cb6f8157 to your computer and use it in GitHub Desktop.
Save joeguilmette/abbc3a5e09e3cb6f8157 to your computer and use it in GitHub Desktop.
<?php
include 'remove-comments.php'
<?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 everything
add_action('init', 'remove_comment_support', 100);
function remove_comment_support() {
$post_types = get_post_types();
foreach ( $post_types as $post_type ) {
remove_post_type_support( $post_type, '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' );
@joeguilmette
Copy link
Author

http://www.reddit.com/r/Wordpress/comments/2ztv6f/how_to_completely_remove_comments_in_wordpress/cpmj24g

To make this more "complete" you could change the remove_comment_support() function to the below, so that the change is applied to all post types, not just posts and pages:

function remove_comment_support() {
    $post_types = get_post_types();
    foreach ( $post_types as $post_type ) {
        remove_post_type_support( $post_type, 'comments' );
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment