我在使用wordpress中的WP_QUERY获取记录时遇到问题。我有一个有效的自定义查询,但我需要以WP_QUERY的形式提供此查询。
Select * from wp_posts where post_type = 'awards' AND post_status = 'publish' AND ID < '$lastmsg' order by ID desc limit 4;
WP_QUERY的参数
$args = array(
'post_type' => 'awards',
'post_status' => 'publish',
'posts_per_page' => 4,
'meta_query' => array(
array(
'key' => 'ID',
'value' => $POST_ID,
'compare' => '<'
)
)
);
请帮帮我。提前谢谢。