我创建了一个自定义帖子类型,并且单个页面模板工作正常。但我遇到了在单页上启用评论的问题。
这是我的功能:
add_action('init', 'vblog');
function vblog() {
register_post_type('vblog', array(
'labels' => array(
'name' => __( 'VTV' ),
'singular_name' => __( 'VTV' ),
'add_new' => 'Add New VBlog',
'add_new_item' => 'Add New VBlog',
'edit' => 'Edit VBlog',
'edit_item' => 'Edit VBlog',
'new_item' => 'New VBlog',
'view' => 'View VBlogs',
'view_item' => 'View VBlog',
'search_iteme' => 'Search VBlogs',
'not_found' => 'No VBlogs Found',
'not_found_in_trash' => 'No VBlogs found in Trash',
'parent' => 'Parent VBlog',
),
'public' => true,
'supports' => array('title', 'editor','custom-fields', 'thumbnail', 'revisions', 'comments'),
'taxonomies' => array('category', 'post_tag')
));
}
所以我确保在支持数组中添加了“comments”。请帮助!!!
答案 0 :(得分:0)
将评论扩展为答案。
您已正确注册post_type以支持评论。在你的单{post_type} .php模板中,你需要在循环内调用注释模板(在endwhile和else之间)。
if ( comments_open() || '0' != get_comments_number() )
comments_template( '', true );
答案 1 :(得分:0)
添加此代码single-vblog.php
comments_template( '', true );
如果show comment已关闭,您可以在phpmyadmin中运行此命令
UPDATE wp_posts SET comment_status = 'open' WHERE post_type = 'vblog';