按ID的WordPress查询分类法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按ID的WordPress查询分类法相关的知识,希望对你有一定的参考价值。
When you create a custom post type and need to query by ID then you can pass in the 'field' and the 'terms' with the ID for that post type.
'taxonomy' => 'bbfitness_exercises_types', 'field' => 'id', 'terms' => $etype ) ) ); // The Query $the_query = new WP_Query( $args ); $result = $the_query->posts;
以上是关于按ID的WordPress查询分类法的主要内容,如果未能解决你的问题,请参考以下文章