【问题标题】:HOw to remove the comments section from WP Job Manager Resumes?如何从 WP Job Manager Resumes 中删除评论部分?
【发布时间】:2021-03-08 15:29:15
【问题描述】:

我正在使用带有简历扩展的 WP Job Manager 插件。 我遇到的问题是,在简历页面的底部有一个我不想要的“cmets”部分。请看:https://prnt.sc/10g7c2m

在 WordPress 设置>讨论菜单下,未选中“允许人们在新帖子上提交 cmets”复选框。请看:https://prnt.sc/10g78rf

我也在使用超级社交插件,我没有选中“启用社交评论”复选框,请参阅:https://prnt.sc/10g7ctp

我还删除了 functions.php 文件中可能导致此问题的代码,但 cmets 部分仍然存在。

有人知道是什么原因造成的吗?请问我该如何解决?

谢谢,

【问题讨论】:

    标签: php wordpress plugins wordpress-theming


    【解决方案1】:

    将此添加到您的主题functions.php 中,它应该禁用它们。如果仍然出现您正在使用的主题,则可能无法检查是否为自定义帖子类型启用了 cmets

       add_action( 'init', 'post_type_resume_disable_comments', 999 );
        
        function remove_custom_post_type_comments() {
            remove_post_type_support( 'resume', 'comments' );
        }
    

    【讨论】:

      猜你喜欢
      • 2020-05-08
      • 1970-01-01
      • 2011-12-18
      • 2019-12-26
      • 2017-10-11
      • 1970-01-01
      • 2016-09-29
      • 2012-03-09
      • 1970-01-01
      相关资源
      最近更新 更多