Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 AdvancedCustomFields 和分类法,但在文档中我没有找到允许我通过存储在wp_options表中的值过滤分类法的东西。
wp_options
我在这里找到了。
而且,它可以通过这样的方式,但使用分类法:
我有一个名为“Person”的分类,我有很多领域。例如,我想按性别和国家过滤。
有什么功能可以让我这样做吗?或者我应该使用 WP-Query 吗?
提前致谢
一旦您在您的帖子中注册了分类法,您可以尝试在您的 query_post 中使用 tax_query Query
query_posts( array( 'post_type' => 'your post type', 'paged' => $paged, 'posts_per_page' => 10, 'tax_query' => array( array( 'taxonomy' => 'person', //or tag or custom taxonomy 'field' => 'id' ) ) ) );