Coming soon
// ① コメント機能をフロントで完全停止 add_filter('comments_open', '__return_false', 20, 2); add_filter('pings_open', '__return_false', 20, 2); add_filter('comments_array', '__return_empty_array', 10, 2); // テンプレートの読み込み自体を止める(コメント欄が出ない) add_filter('comments_template', function($file){ return dirname(__FILE__) . '/dummy'; }, 100); // ② 既存投稿タイプからコメントサポート削除(投稿・固定ページ) add_action('init', function(){ foreach (['post','page'] as $type) { if (post_type_supports($type, 'comments')) { remove_post_type_support($type, 'comments'); remove_post_type_support($type, 'trackbacks'); } } }); // ③ 管理画面からコメント関連を消す add_action('admin_menu', function(){ remove_menu_page('edit-comments.php'); // コメントメニュー }); add_action('wp_before_admin_bar_render', function(){ global $wp_admin_bar; $wp_admin_bar->remove_menu('comments'); // 管理バーの吹き出し }); // ④ ダッシュボードの「最近のコメント」ウィジェットを削除 add_action('wp_dashboard_setup', function(){ remove_meta_box('dashboard_recent_comments', 'dashboard', 'normal'); });
ドッグサロン ウルフリゼ © 2025