1

在管理区域中编辑页面或帖子时,您可以启用和禁用各种屏幕选项。

我想要完成的是使其默认情况下不允许评论,但如果管理员也想要也可以打开它。目前默认设置为允许评论。

默认情况下如何更改allow comments为 false(未选中)?

4

1 回答 1

1

只需将其粘贴到您的functions.php

function comments_off_default( $post_content, $post ) {
    $post->comment_status = 'closed';
    return $post_content;
}
add_filter( 'default_content', 'comments_off_default', 10, 2 );

你也可以试试这个插件

于 2013-07-08T20:21:59.043 回答