我已经搜寻Google很久没有用了。
我需要根据下拉列表的选择来过滤循环。 这应该会自动过滤下面的循环以显示相应的类别选项。
<?php wp_dropdown_categories( array('lowest_fares' => $taxonomy) ); ?>
<?php $loop = new WP_Query( array('post_type' => 'lowest_fares', 'orderby' => 'post_id', 'order' => 'ASC') ); ?>
<?php while( $loop->have_posts() ) : $loop->the_post(); ?>
<!--ADVANCED CUSTOM FIELS STUFF HERE-->
<?php endwhile; ?>
任何帮助将不胜感激。