登录到你的WordPress网站的FTP或文件管理器。 找到并打开你的主题文件夹中的 functions.php 文件。 在文件的末尾添加以下代码: 代码语言:txt 复制 function disable_comments_on_all_pages() { if (is_singular() || is_page()) { remove_action('comments_template', 'comments_template'); } } add_action...
转到设置 > Disable Comments 来配置禁用评论的选项。 注意事项 禁用评论可能会影响用户体验,特别是如果你依赖用户反馈或社区互动。 如果你的网站有特定的页面或帖子需要保留评论功能,可以在上述方法中进行相应的调整。 通过以上任一方法,你可以有效地禁用WordPress中的所有评论。选择最适合你网站需求的方法进行操作即可。
如果要删除整站评论,就选择“Everywhere: Delete all comments in WordPress.”,然后点击“Delete Comments”按钮如果要删除指定文章类型的文章评论,就在“For certain post types:”中选择,然后点击“Delete Comments”按钮4、点击【设置】下的“Disable Comments”进入禁止评论界面:...
另一个插件是Delete All Comments of WordPress。这款插件非常简单直接;它可以一键删除网站上的所有评论(或某个类别中的所有评论),没有任何免费功能。设置简单快捷。 Delete All Comments of WordPress 只需安装插件,然后在Tools > Delete Comments下找到它。选择 “All Comments“,然后点击 “Delete Now“。 设置Del...
Disable Comments插件 使用插件移除评论链接 您可以为你的WordPress网站添加代码,以快速删除WordPress评论者链接。当然,一般情况下,不太建议这样做。因为,这样做的后果就是,可能你的网站再不会有人评论了。 为此,您可以编写一个简简单单的插件。 首先在您的wp-content/plugins目录中为插件创建一个文件,将其命名为wbolt...
3. Disable comments Now you’ll see a new set of options. In the “Comments” dropdown menu, select “Do not allow.” 4. Save the changes Click the “Update” button to apply the changes to all the selected posts or pages. You’ve just disabled comments on multiple pieces of content...
By using the Disable Comments plugin, you can effortlessly disable comments on your WordPress site without having to manually go through all the above steps. This plugin provides you the option to completely disable comments throughout your website, Using this plugin you can disable comments from ...
如果你有点强迫症(比如我?),明明用不到评论,但后台依旧显示评论,看着实在是难受,我们可以通过一些WP爱好者分享的代码进行关闭评论。 比如: function disable_page_comments( $posts ) { if ( is_page()) { $posts[0]->comment_status = 'disabled'; ...
Within this box, un-tick the ‘Allow Comments‘ option. Once done, click on the ‘Update‘ button on the right hand side of the page to save the changes. Disable all comments using a plugin: If you would like to disable commenting site wide, on both previous and future posts – the ...
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 What are WordPress Comments Comments are a popular feature allowing visitors to express their opinion and reaction...