Make tag show as dropdown in woocommerce

前端 未结 2 1267
囚心锁ツ
囚心锁ツ 2021-01-27 06:58

Hi this is the code to the wordpress shown tags:


                    

        
2条回答
  •  旧巷少年郎
    2021-01-27 07:38

    
    
    'product_tag', // Taxonomy to return. Valid values are 'category', 'post_tag' or any registered taxonomy. 'show_option_none' => 'Select tag', 'show_count' => 1, 'orderby' => 'name', 'value_field' => 'slug', 'echo' => 0 ); $select = wp_dropdown_categories( $args ); $select = preg_replace("#]*)>#", "", $select); echo $select; ?>

    Would you please try above code?

提交回复
热议问题