如果你对这三个都提出质疑,那就太好了post_type
同时,使用一个查询,然后使用php
.
考虑此查询:
$args = array(
\'post_type\' => array( \'pt1\', \'pt2\', \'pt3\' ),
\'meta_key\' => BUMP!!!!
);
不能使用
meta_key
s
所以,我认为唯一的方法是wp_db
对象并进行自定义查询:
$results = $wpdb->get_results(
"
SELECT ID, post_title
FROM $wpdb->posts
WHERE post_type = \'pt1\' OR post_type = \'pt2\' OR post_type = \'pt3\'
AND ...
"
);
foreach( $results as $result ){
echo $result->post_title;
// ...
}
然后使用
php
分离并显示结果。