最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

How to filter taxonomy of a custom post type and display it in the single post type page in the back end?

matteradmin11PV0评论

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.

Post a comment

comment list (0)

  1. No comments so far