【发布时间】:2015-04-23 10:13:08
【问题描述】:
我正在尝试将 sql 查询转换为 wordpress 查询,但无法理解它是如何完成的?
我尝试转换为new wp_query的查询
$query = " SELECT SQL_CALC_FOUND_ROWS distinct wp_posts.ID
FROM wp_posts
INNER JOIN wp_postmeta
ON ( wp_posts.id = wp_postmeta.post_id )
INNER JOIN wp_postmeta AS mt1
ON ( wp_posts.id = mt1.post_id )
WHERE 1 = 1
AND wp_posts.id NOT IN ( 0 )
AND wp_posts.post_type = 'topic'
AND ( wp_posts.post_status = 'publish'
OR wp_posts.post_status = 'closed'
OR wp_posts.post_status = 'reported' )
AND ( wp_postmeta.meta_key = '_bbp_last_active_time')
GROUP BY wp_posts.id
ORDER BY wp_postmeta.meta_value DESC
LIMIT 0, 10
";
$topics = $wpdb->get_results($query, OBJECT);
所以我可以使用
while($topics->have_posts()) : $topics->the_post(); ?>
喜欢
$args = array(); // how do I convert to this.
$topics = new WP_query($args);
【问题讨论】:
标签: php mysql sql-server wordpress