我想在自定义SQL查询中使用自定义帖子类型,但是,当我在我的查询中添加自定义帖子类型时,我没有得到任何结果。
我的问题在哪里?
这是我试过的代码
$top5_ov_performance = $wpdb->get_results("SELECT post_id,meta_value FROM ".$wpdb->prefix."postmeta WHERE meta_key = \'sd_top5_overclocing\' AND (post_type = \'cpu\') ORDER BY meta_value DESC LIMIT 0,5 ");
我也试过这个
post_type = \'cpu\'
而不是
(post_type = \'cpu\')
和
and
而不是
AND