由于使用了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 );
答案 0 :(得分: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 );
}