我试图检索{strong> Wordpress 中有post_id < $number
的帖子,所以我在文档中查找了它,并尝试了以下代码:
$args = array(
'numberposts' => 10,
'posts_per_page' => 10,
'offset' => 0,
'orderby' => 'id',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish',
array(
'key' => 'post_id',
'value' => '3000',
'compare' => '<'
)
);
$query = new WP_Query( $args );
$posts = $query->get_posts();
但它没有用(返回最后10个帖子而不比较ID),我找不到答案:(
所以,请告诉我该怎么做..
并提前感谢..
答案 0 :(得分:1)
使用以下查询。它将返回包含所需数据的数组。
sql_query = """SELECT pivot_id
FROM aud_qty
WHERE hshake1 is NULL AND
((strftime('%s', DATETIME('now')) - strftime('%s', sent_to_pivot)) / (60)) > 30;"""