如果要删除整站评论,就选择“Everywhere: Delete all comments in WordPress.”,然后点击“Delete Comments”按钮如果要删除指定文章类型的文章评论,就在“For certain post types:”中选择,然后点击“Delete Comments”按钮4、点击【设置】下的“Disable Comments”进入禁止评论界面:...
Disable support for comments and trackbacks in post types foreach (get_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'); } }}); // Close comments ...
$post =get_post($post_id); if($post->post_type =='attachment'){ returnfalse; } return$open; } add_filter('comments_open','disable_media_comment',10,2); 4. 单击更新文件完成更改。 方法6:使用 WordPress 插件禁用评论 使用Disable Comments插件能更快速、简单的禁用评论。 在wordpress仪表板,转...
在搜索框中输入“Disable Comments”,然后点击“安装”按钮安装插件。 安装完成后,点击“启用”按钮启用插件。 插件生效后,所有现有和新发布的文章将不再显示评论功能。 推荐的腾讯云相关产品和产品介绍链接地址: 腾讯云服务器(CVM):https://cloud.tencent.com/product/cvm 腾讯云云数据库MySQL版(TencentDB for MySQL)...
Step 1: Open the blog post or page on which you want to disable the comments. Step 2: Scroll down to the Discussion section and uncheck the box that says “Allow comments”. Step 6: Click Update to save your changes. Repeat these steps for each post that you want to disable comments...
要在WordPress中禁止某些用户评论,你可以使用代码来实现。你可以在你的主题的functions.php文件中添加以下代码:function disable_comments_for_specific_users( $open, $post_id ) { $user = wp_get_current_user();// 定义禁止评论的用户ID数组 $disallowed_users = array( 2, 3, 4 ); // 将这里的数字...
域名备案期间,管局规定网站不允许有评论功能。虽然可以在WP后台设置禁止评论,但对之前发表的文章无效,修改主题模板删除评论模块代码比较麻烦,通过安装Disable Comments(禁止评论)插件,帮你一键关闭全站评论功能。 WordPress后台安装插件页面,直接搜索:Disable Comments安装。
Method 2: Disable WordPress Comments on Future Posts While the first method can turn off WordPress comments under your past posts and pages, it won’t prevent people who want to post comments on new articles. Thankfully, you can resolve this issue by applying a specific setting. ...
How to disable comments on a WordPress post/page How to disable WordPress comments for multiple pages/posts How to turn off and remove all WordPress comments Disable and remove comments manually Use a “disable comments” plugin Turn off comments from the theme’s functions.php file Summary...
Disable comments on an individual post: If you only need to disable commenting on a single post, then the quickest way to do this is via the ‘Discussion’ options within the WordPress post. Firstly, locate the post that you would like to turn commenting off for, and edit the post. ...