1
我試圖使用方法:在query_posts使用WooCommerce標題的WordPress
<?php $title_reviews = get_the_title(); $title_reviews = strtolower($title_reviews); query_posts('category_name=$title_reviews&posts_per_page=4'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li class="reviews-posts"><?php the_content(); ?></li>
<?php endwhile; endif; wp_reset_query(); ?>
但它不是返回任何結果 - 例如我有以下評論類產品1叫做(子類)類別。如果我只是在category_name中使用product1,它就可以正常工作,但我試圖爲每個產品頁面動態設置此過濾器。
請不要使用'query_posts()'。請閱讀[本文檔](http://stackoverflow.com/documentation/wordpress/4002/querying-posts#t=201611071220004872203)關於後期查詢... –