列出wp_list_pluck中的所有元素

时间:2018-04-17 07:26:58

标签: php wordpress woocommerce

我尝试列出xsl:when功能中的所有元素,目前它显示wp_list_pluck(),这是在WordPress阅读设置中设置的。

这是我的代码,

only 10 items

此处,<?php $tag_id = get_queried_object()->slug; $args = array( 'product_cat' => $tag_id, 'posts_per_page' => -1 ); $query = new WP_Query( $args ); if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); $filtered_posts = $wp_query -> posts; $filtered_post_ids = wp_list_pluck( $filtered_posts, 'ID' ); } } wp_reset_postdata(); ?> $filtered_post_ids,我希望它可以提供所有项目。

提前致谢。

0 个答案:

没有答案