WordPress 4.3将默认关闭页面上的注释

从WordPress 4.3开始,默认情况下,页面上的注释将被关闭。这项新功能将大大改善用户体验。创建新页面后,用户无需在讨论设置中手动将其关闭。Wordpress建站必看。


除了页面之外,此功能还将应用于自定义帖子类型。如果在注册新的帖子类型时不添加对评论的支持,则默认为关闭评论。


新的更改还将附带一个过滤器,您可以使用该过滤器将评论的当前行为恢复到特定的帖子类型。


例如:


/**

  • Filter whether comments are open for a given post type.

*

  • @param string $status Default status for the given post type,
  • either 'open' or 'closed'.
  • @param string $post_type Post type. Default is post.
  • @param string $comment_type Type of comment. Default is comment.
  • @return string (Maybe) filtered default status for the given post type.

*/
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 );


免费获取专属报价方案,请联系我们:
WordPress 4.3将默认关闭页面上的注释 联系方式