我创建了一个自定义帖子类型和一个可以正常工作的单页模板。但是我在为它启用单个页面上的评论时遇到了问题。
这是我的功能:
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')
));
}
所以我确保我在支持数组中添加了“评论”。请帮忙!!!