繁体   English   中英

WordPress:有关自定义帖子类型的评论

[英]WordPress : comments on custom post type

多亏了WordPress上的ACF,我创建了一个自定义帖子类型"Movies" ,并且希望对这些帖子启用评论。 我在这里找到了一些帮助,修改了functions.php文件,但仍然无法正常工作...

这是我在"only admin"部分中插入的代码。 我不知道我是否以正确的方式这样做...

我不是开发人员。 这是我的代码。

谢谢你的时间。

// Enable comments in ACF
            add_action( 'init', 'movie' );
            function register_cpt_movie() {
                $labels = array(
                    'name' => _x( 'movie', 'movie' ),
                    'singular_name' => _x( 'movie', 'movie' ),
                    'add_new' => _x( 'Ajouter', 'movie' ),
                    'add_new_item' => _x( 'Ajouter une movie', 'movie' ),
                    'edit_item' => _x( 'Modifier', 'movie' ),
                    'new_item' => _x( 'Nouvelle movie', 'movie' ),
                    'view_item' => _x( 'Voir la movie', 'movie' ),
                    'search_items' => _x( 'Recherche', 'movie' ),
                    'not_found' => _x( 'Aucune movie trouvé', 'movie' ),
                    'not_found_in_trash' => _x( 'Aucune movie trouvé', 'movie' ),
                    'parent_item_colon' => _x( 'Parent Service:', 'movie' ),
                    'menu_name' => _x( 'movie', 'movie' ),
                );

            $args = array(
                'labels' => $labels,
                'hierarchical' => false,
                'supports' => array( 'title', 'editor', 'comments', 'excerpt', 'custom-fields', 'thumbnail', 'revisions', 'author', 'page-attributes' ),
                'public' => true,
                'show_ui' => true,
                'show_in_menu' => true,
                'menu_position' => 21,
                'show_in_nav_menus' => true,
                'publicly_queryable' => true,
                'exclude_from_search' => false,
                'has_archive' => true,
                'query_var' => true,
                'can_export' => true,
                'rewrite' => true,
                'capability_type' => 'page'
            );
            register_post_type( 'movie', $args );

回调“ init”挂钩的函数名称错误。 它应该不是register_cpt_movie不是movie

更新的代码是:

// Enable comments in ACF
add_action( 'init', 'register_cpt_movie' );
function register_cpt_movie() {
    $labels = array(
        'name' => _x( 'movie', 'movie' ),
        'singular_name' => _x( 'movie', 'movie' ),
        'add_new' => _x( 'Ajouter', 'movie' ),
        'add_new_item' => _x( 'Ajouter une movie', 'movie' ),
        'edit_item' => _x( 'Modifier', 'movie' ),
        'new_item' => _x( 'Nouvelle movie', 'movie' ),
        'view_item' => _x( 'Voir la movie', 'movie' ),
        'search_items' => _x( 'Recherche', 'movie' ),
        'not_found' => _x( 'Aucune movie trouvé', 'movie' ),
        'not_found_in_trash' => _x( 'Aucune movie trouvé', 'movie' ),
        'parent_item_colon' => _x( 'Parent Service:', 'movie' ),
        'menu_name' => _x( 'movie', 'movie' ),
    );

    $args = array(
        'labels' => $labels,
        'hierarchical' => false,
        'supports' => array( 'title', 'editor', 'comments', 'excerpt', 'custom-fields', 'thumbnail', 'revisions', 'author', 'page-attributes' ),
        'public' => true,
        'show_ui' => true,
        'show_in_menu' => true,
        'menu_position' => 21,
        'show_in_nav_menus' => true,
        'publicly_queryable' => true,
        'exclude_from_search' => false,
        'has_archive' => true,
        'query_var' => true,
        'can_export' => true,
        'rewrite' => true,
        'capability_type' => 'page'
    );
    register_post_type( 'movie', $args );
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM