如何在wp_query中使用WHERE条件?

问题描述 投票:0回答:1

我想在wp_query中使用WHERE条件。我想要显示他们的ID高于5的帖子。我怎样才能做到这一点 ?

php wordpress
1个回答
-1
投票

你可以这样做:

$exclude_ids = array( 1, 2, 3, 4, 5 );
$query = new WP_Query( array( 'post__not_in' => $exclude_ids ) );
© www.soinside.com 2019 - 2024. All rights reserved.