以下是我的wordpress查询,其中我只想显示粘贴帖子,但查询没有显示任何帖子。另外我将两个帖子设置为粘性,以便检查部分!!!请告诉我如何修改此查询,以便它只显示粘贴的帖子
<?php
$wp_query = null;
$wp_query = new WP_Query(array(
'posts_per_page' => 2,
//'paged' => get_query_var('paged'),
'post_type' => 'post',
'post__in' => 'sticky_posts',
//'post__not_in' => array($lastpost),
'post_status' => 'publish',
'caller_get_posts'=> 0 ));
while ($wp_query->have_posts()) : $wp_query->the_post(); $lastpost[] = get_the_ID();
?>
答案 0 :(得分:9)
只显示粘贴帖子的查询:
// get sticky posts from DB
$sticky = get_option('sticky_posts');
// check if there are any
if (!empty($sticky)) {
// optional: sort the newest IDs first
rsort($sticky);
// override the query
$args = array(
'post__in' => $sticky
);
query_posts($args);
// the loop
while (have_posts()) {
the_post();
// your code
}
}
答案 1 :(得分:1)
query_posts()函数在设置当前查询之前不会创建新的WP_Query(),这意味着这不是最有效的方法,而是perform extra SQL requests。
使用'pre_get_posts'钩子是安全的,比如
function sticky_home( $query ) {
$sticky = get_option('sticky_posts');
if (! empty($sticky)) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'post__in', $sticky );
}
}
} add_action( 'pre_get_posts', 'sticky_home' );