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.
我正在尝试查询 WordPress 数据库以获取特定帖子类型的帖子标签。
到目前为止,我有这个,它给了我所有的标签,但我不确定如何将其限制为特定的帖子类型,或者是否可能。
$query = "SELECT name FROM wp_terms"; $myrows = $wpdb->get_results( $query ); foreach ( $myrows as $myrow ) { print_r($myrow); }
为了限制您的查询,您可以使用WHERE子句,即
$query = "SELECT name FROM wp_terms WHERE *post_type*=*typeyouwant*";
也可以使用LIKE子句,但这会导致查询速度非常慢。