从WordPress获取WooCommerce产品类别
2022-08-30 08:49:27
我正在尝试通过WordPress主题中的功能从WooCommerce获取产品类别
function get_me_list_of($atts, $content = null)
{
$args = array( 'post_type' => 'product', 'posts_per_page' => 10, 'product_cat' => $atts[0]);
$loop = new WP_Query( $args );
echo '<h1 class="upp">Style '.$atts[0].'</h1>';
echo "<ul class='mylisting'>";
while ( $loop->have_posts() ) : $loop->the_post();
global $product;
echo '<li><a href="'.get_permalink().'">'.get_the_post_thumbnail($loop->post->ID, 'thumbnail').'</a></li>';
echo '<li><a href="'.get_permalink().'">'.$loop->post->post_title.'</a></li>';
echo '<li><a href="">'.get_categories().'</a></li>';
endwhile;
echo "</ul>";
wp_reset_query();
}
?>
上面的代码返回一些产品,但产品类别。
当我包含在上面的代码中时,它以数组的形式返回。如何解决此问题?echo '<li><a href="">'.get_categories().'</a></li>';
如何更改此内容以从WooCommerce获取产品类别?