我正在与WordPress进行斗争WP_Query
. 我们通常传递一个参数数组来获取结果。
$args = array(
\'post_type\' => \'post\',
\'post_per_page\' => \'2\',
\'orderby\' => \'meta_value_num\',
\'order\' => \'DESC\',
\'ignore_sticky_posts\' => true
);
$the_query = new WP_Query( $args );
有没有办法打印出来
$the_query
以原始形式进行测试,就像我们在CodeIgniter中使用
$this->db->last_query();
?
原始查询示例:
select * from table1 where ......