从WordPress 4.3开始,默认情况下,页面上的注释将被关闭。这项新功能将大大改善用户体验。创建新页面后,用户无需在讨论设置中手动将其关闭。Wordpress建站必看。
除了页面之外,此功能还将应用于自定义帖子类型。如果在注册新的帖子类型时不添加对评论的支持,则默认为关闭评论。
新的更改还将附带一个过滤器,您可以使用该过滤器将评论的当前行为恢复到特定的帖子类型。
例如:
/**
*
post
.comment
.*/
function wpdocs_open_comments_for_myposttype( $status, $post_type, $comment_type ) {
if ( 'myposttype' !== $post_type ) {
return $status;
}
// You could be more specific here for different comment types if desired
return 'open';
}
add_filter( 'get_default_comment_status', 'wpdocs_open_comments_for_myposttype', 10, 3 );