我尝试获取我的产品标签的slug名称。喜欢这个
$args = array( 'post_type' => 'product');
$list_tags = [];
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
$tag = get_the_term_list($post->ID, 'product_tag', '', ',' );
array_push($list_tags, $tag );
endwhile;
return $list_tags;
我获得了我的标签列表,但我想要这个标签的slu ..
有什么想法吗?
答案 0 :(得分:1)
$args = array( 'post_type' => 'product');
$list_tags = array()
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
$terms = get_the_terms( $post->ID, 'product_tag' );;
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
foreach ( $terms as $term ) {
$list_tags = $term->slug;
array_push($list_tags, $terms );
}
}
endwhile;
return $list_tags;