0

我只想列出两个特定日期之间发布的帖子

我在这里找到了一个解决方案http://www.wprecipes.com/wordpress-loop-get-posts-published-between-two-particular-dates

我的代码在这里,不幸的是这不起作用!

<?php
          function filter_where($where = '') {
                $where .= " AND post_date >= '2012-05-09' AND post_date <= '2012-05-11'";
                //$where .= " AND post_date > '" . date('Y-m-d', strtotime('-30 days')) . "'";
            return $where;
          }
        add_filter('posts_where', 'filter_where');
        query_posts($query_string);
        ?>
               <?php while (have_posts()) : the_post(); ?>    
                    <h1><?php the_title(); ?></h1>
               <?php endwhile; ?>
4

1 回答 1

4

首先,您不应该使用query_posts()它,因为它会破坏全局变量并弄乱条件等...

你没有提到这段代码在哪里运行。例如,如果它在页面模板上,您将不会收到任何帖子,因为当将 $query_string 传递给您的查询时,您使用的是全局 $wp_query 对象,它只会查询页面 post_types。

我使用新的 WP_Query 而不是 query_posts 测试了您的代码,它运行良好。

function filter_where( $where = '' ) {

$where .= " AND post_date >= '2012-05-01' AND post_date < '2012-05-14'";
return $where;
}

add_filter( 'posts_where', 'filter_where' );

$query = new WP_Query( array( 'post_type' => 'post' ) );

    echo '<div id="content" style="color: white!important;">';
    echo '<h1>And here are the posts……&lt;/h1>';
    while( $query->have_posts() ) : $query->the_post();
    
    echo '<h2>'. get_the_title() .'</h2>';
    
    
    endwhile;
    echo '</div>';
    
    
remove_filter( 'posts_where', 'filter_where' );
于 2012-05-14T06:55:10.493 回答