0

我创建了一个自定义帖子类型和一个可以正常工作的单页模板。但是我在为它启用单个页面上的评论时遇到了问题。

这是我的功能:

    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')
));

}

所以我确保我在支持数组中添加了“评论”。请帮忙!!!

4

2 回答 2

0

扩展评论作为答案。

您已正确注册 post_type 以支持评论。在您的 single-{post_type}.php 模板中,您需要在循环内调用评论模板(在 endwhile 和 else endif 之间)。

if ( comments_open() || '0' != get_comments_number() )
        comments_template( '', true );
于 2012-06-06T18:56:53.487 回答
0

添加此代码 single-vblog.php

comments_template( '', true ); 

如果显示评论已关闭,您可以在 phpmyadmin 中运行此命令

UPDATE wp_posts SET comment_status = 'open' WHERE post_type = 'vblog';
于 2013-04-02T15:42:05.550 回答