下面的示例将列出所有mobile_review
具有术语的帖子htc_desire_hd
在分类学中mobile_phone
:
$tax_query = array( \'relation\' => \'AND\' );
$tax_query[] = array(
\'taxonomy\' => \'mobile_phone\',
\'terms\' => array(\'htc_desire_hd\'),
\'field\' => \'slug\'
);
$args = array(
\'post_type\' => \'mobile_review\',
\'tax_query\' => $tax_query
);
$custom_loop = new WP_Query( $args );
if ( $custom_loop->have_posts() ) :
while( $custom_loop->have_posts() ) : $custom_loop->the_post();
the_title();
endwhile;
else :
_e(\'Sorry, nothing here.\');
endif;
wp_reset_query();
现在,您可以按手机型号查看手机,只需更改手机名称,通过表单、URL等传递名称。