コメント機能とセクションを完全に削除する方法はありますか?


26

コメントクエリを実行したくない。私はワードプレスの管理エリアに表示されるコメントについて何もしません。

これは何らかの形で可能ですか?

編集:管理バーからコメントへのリンクをすべて削除し、バックエンドセクションをすべて削除します。


コードをテンプレートファイルから非表示にする方法がないため、テンプレートファイルからコードを手動で削除する必要があります。私が間違っている場合、誰かが私を修正すると信じています。
xLRDxREVENGEx

回答:


40

上記のすべての回答のリストと、管理バーリンクの削除を以下に示します。テーマ関数ファイルに追加するか、プラグインにします。みんなの答えが正しいので、これをコミュニティWikiとしてマークします。

<?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' );
?>

11

[コメント]メニューを削除するには:

add_action( 'admin_init', 'my_remove_admin_menus' );
function my_remove_admin_menus() {
    remove_menu_page( 'edit-comments.php' );
}

すばらしいです。そして、新しいWP 3.1トップパネルから?
ピーターウェスター

7

これにより、サイトへのコメントのサポートが削除されます。

add_action('admin_menu', 'remove_comment_support');

function remove_comment_support() {
    remove_post_type_support( 'post', 'comments' );
    remove_post_type_support( 'page', 'comments' );
}

ただし、管理セクションでコメントのすべての言及が非表示になるかどうかはわかりません。ダッシュボードの「Right Now」ボックスはほとんどハードコーディングされているため、「Comments」に関する行を除外するには、そのボックスを非表示にするか、何らかのハッキングを行う必要があります。しかし、それは私が考えることができる他のどこでも「コメント」テキストを削除する必要があります。


しかし、それはまだ管理メニューに表示されます。欲しくない。
ピーターウェスターランド

3

これにより、マークアップ自体からは削除されませんが、テーマのCSSに次の行を追加することで、WP 3.1の管理バーリンクを(視覚的にもスクリーンリーダーからも)簡単に非表示にできます。

li#wp-admin-bar-comments { display: none; visibility: hidden; }


このテーマについてさらに読んでいるうちに、コメント機能の痕跡をすべて削除するなど、多くの管理インターフェイスを微調整する方法を扱ったこの記事をSix Revisionsで見つけました。
毒豆腐

...また、何らかの理由で管理者レベルのユーザーに対してこのいずれかをオンのままにしたい場合は、current_user_can機能を使用します。例:if (!current_user_can('level_10'))非管理者ユーザーのみをターゲットにします。
毒豆腐

ユーザーレベルは非推奨です。代わりに「manage_options」または他の機能を使用してください。
スクライブ

@scribu:これについて疑問に思った。WPCodexでユーザーレベルへの最近の参照を見つけることができなかった。私に知らせてくれてありがとう(この役割と能力の表は私の頭の能力を得るのに役立った)。
毒豆腐


3
// Disable support for comments and trackbacks in post types
function df_disable_comments_post_types_support() {
    $post_types = get_post_types();
    foreach ($post_types as $post_type) {
        if(post_type_supports($post_type, 'comments')) {
            remove_post_type_support($post_type, 'comments');
            remove_post_type_support($post_type, 'trackbacks');
        }
    }
}
add_action('admin_init', 'df_disable_comments_post_types_support');

// Close comments on the front-end
function df_disable_comments_status() {
    return false;
}
add_filter('comments_open', 'df_disable_comments_status', 20, 2);
add_filter('pings_open', 'df_disable_comments_status', 20, 2);

// Hide existing comments
function df_disable_comments_hide_existing_comments($comments) {
    $comments = array();
    return $comments;
}
add_filter('comments_array', 'df_disable_comments_hide_existing_comments', 10, 2);

// Remove comments page in menu
function df_disable_comments_admin_menu() {
    remove_menu_page('edit-comments.php');
}
add_action('admin_menu', 'df_disable_comments_admin_menu');

// Redirect any user trying to access comments page
function df_disable_comments_admin_menu_redirect() {
    global $pagenow;
    if ($pagenow === 'edit-comments.php') {
        wp_redirect(admin_url()); exit;
    }
}
add_action('admin_init', 'df_disable_comments_admin_menu_redirect');

// Remove comments metabox from dashboard
function df_disable_comments_dashboard() {
    remove_meta_box('dashboard_recent_comments', 'dashboard', 'normal');
}
add_action('admin_init', 'df_disable_comments_dashboard');

// Remove comments links from admin bar
function df_disable_comments_admin_bar() {
    if (is_admin_bar_showing()) {
        remove_action('admin_bar_menu', 'wp_admin_bar_comments_menu', 60);
    }
}
add_action('init', 'df_disable_comments_admin_bar');

ソース

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.