admin管理员组文章数量:1130349
I have a custom post type of products and I want to retrieve its taxonomy terms and display it in the backend. Am using ACF for these tabs and would want to filter the sizes attributes dynamically and name it in the tab.
$postID = get_the_ID();
$have_terms = get_the_terms($postID, 'product_attributes');
if($have_terms){
$parent_terms = wp_get_post_terms( get_the_ID(),'product_attributes', array( 'parent' => 0, 'orderby' => 'id', 'order' => 'DESC', 'hide_empty' => false ) );
This is the code in my template but I don't know how can I display it in the single product edit page.
I have a custom post type of products and I want to retrieve its taxonomy terms and display it in the backend. Am using ACF for these tabs and would want to filter the sizes attributes dynamically and name it in the tab.
$postID = get_the_ID();
$have_terms = get_the_terms($postID, 'product_attributes');
if($have_terms){
$parent_terms = wp_get_post_terms( get_the_ID(),'product_attributes', array( 'parent' => 0, 'orderby' => 'id', 'order' => 'DESC', 'hide_empty' => false ) );
This is the code in my template but I don't know how can I display it in the single product edit page.
版权声明:本文标题:How to filter taxonomy of a custom post type and display it in the single post type page in the back end? 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749228213a2336040.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论