php 从帖子和页面中删除WordPress评论。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 从帖子和页面中删除WordPress评论。相关的知识,希望对你有一定的参考价值。

## Remove support for comments
function remove_comment_support() 
{
    remove_post_type_support( 'post', 'comments' );
    remove_post_type_support( 'page', 'comments' );
}
add_action('init', 'remove_comment_support', 100);

以上是关于php 从帖子和页面中删除WordPress评论。的主要内容,如果未能解决你的问题,请参考以下文章

php 从管理菜单中删除帖子,评论和工具

php 删除帖子页面wordpress

PHP Wordpress:从评论中删除nofollow

php WordPress - 从帖子标题中删除私人/保护

php 从管理员Wordpress中删除博客(帖子类型)

PHP Wordpress查询从帖子/页面中提取片段