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

问题描述 投票:0回答:1

由于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 );
php wordpress comments custom-post-type advanced-custom-fields
1个回答
1
投票

'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 );
}
© www.soinside.com 2019 - 2024. All rights reserved.