查询自定义分类法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询自定义分类法相关的知识,希望对你有一定的参考价值。
Use WP_Query to query a custom taxonomy, using the tax_query parameter.
<?php // Example query to select all posts belonging to a custom taxonomy. 'taxonomy' => 'TAXONOMY_NAME', 'field' => 'slug', 'terms' => 'TAXONOMY_SLUG' ) ) ); $the_query = new WP_Query( $args ); // The Loop while ( $the_query->have_posts() ) : $the_query->the_post(); echo '<li>'; the_title(); echo '</li>'; endwhile; // Reset Post Data wp_reset_postdata(); ?>
以上是关于查询自定义分类法的主要内容,如果未能解决你的问题,请参考以下文章