gpt4 book ai didi

php - 如何在自定义帖子类型中添加 WooCommerce 产品类别

转载 作者:行者123 更新时间:2023-12-05 08:43:13 24 4
gpt4 key购买 nike

$args = array(
'label' => __( 'Eventr', 'dnp_theme' ),
'description' => __( 'What clients say ', 'dnp_theme' ),
'labels' => $labels,
'supports' => array( 'title', 'editor', 'thumbnail'),
'taxonomies' => array( 'Eventr', 'product_cat'),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'show_in_admin_bar' => true,
'menu_position' => 10,
'menu_icon' => 'dashicons-images-alt2',
'can_export' => true,
'has_archive' => false,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'post',
);

register_post_type( 'Eventr', $args );

这是我的代码,用于在我的自定义帖子类型中获取 Woocommerce 产品类别。

在分类法中,我添加了 woocommerce 产品类别分类法“product_cat”,但它没有显示在管理面板上。

帮助我了解如何在自定义帖子类型管理菜单中添加 WooCommerce 产品类别。

最佳答案

我遇到了同样的问题,我发现之后注册分类法似乎可行。因此,在注册自定义帖子类型后的函数中,添加如下内容,其中 custom_post_type 键是您注册的键:

add_action( 'init', 'add_product_cat_to_custom_post_type' );
function add_product_cat_to_custom_post_type() {
register_taxonomy_for_object_type( 'product_cat', 'custom_post_type' );
}

关于php - 如何在自定义帖子类型中添加 WooCommerce 产品类别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33037985/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com