我有基于wordpress的网站,我是wordpress的新手。我试图在博客页面上隐藏评论。
我更改了“转到设置»讨论»取消注意允许人们在管理面板中发布对新文章的评论。但是无法删除博客页面上的评论。我只需要在页面上显示博客而不是评论。
请您给我一些关于如何在博客页面上隐藏/删除评论的正确建议?
任何形式的帮助都将受到高度赞赏。
我得到了解决方案
我刚刚在我的代码中对下面一行进行了评论,它正在运行。
if ( ! $is_page_builder_used && comments_open() && 'on' === et_get_option( 'divi_show_pagescomments', 'false' ) ) comments_template( '', true );
答案 0 :(得分:1)
访问您的WordPress主题目录,有一个名为post.php的文件
从此文件中注释此代码
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
如果没有post.php,那么您需要先找到文件在博客页面中显示的位置。
答案 1 :(得分:1)