使用WordPress建站的过程中,我们发现WordPress 4.3以及后续版本在默认情况下将页面(page)的评论功能关闭了,这意味着,你如果新建一个页面,需要手动勾选”允许评论”才可以开启页面的评论功能,这个对于那些经常要发布可以评论页面的用户来说,增加了不少工作量。如下图:
如果你想要默认情况下开启页面的评论功能,可以下载安装 Allow Comments on Pages by Default 插件,或者切换到主题目录,将下面的代码添加到主题的 functions.php文件中:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | /* Plugin Name: Allow Comments on Pages by Default Plugin URI: http://wordpress.org/plugins/allow-comments-on-pages-by-default/ Description: Turns on comments on pages in WordPress 4.3+ by default. Author: Sergey Biryukov Author URI: http://sergeybiryukov.ru/ Version: 1.0 */ function wp_open_comments_for_pages( $status, $post_type, $comment_type ) { if ( 'page' === $post_type ) { $status = 'open'; } return $status; } add_filter( 'get_default_comment_status', 'wp_open_comments_for_pages', 10, 3 ); |