Wordpress MySQL查询类别页面

时间:2013-03-20 20:53:25

标签: mysql wordpress categories

我在我的wordpress index.php上使用此查询来显示帖子并按日期排序(最早的第一个ASC)。我使用这个数据库查询是因为query_posts由于某种原因不适合我。

http://pastebin.com/e7vVyKP9

现在我想在我的类别页面上使用完全相同的查询。我不得不添加一些行,以便只显示活动类别的帖子。

有没有人有解决方案?

1 个答案:

答案 0 :(得分:0)

好的,根据您发布的信息,您可以使用以下内容:

$args = array( 'post_status' => array( 'publish', 'future' ), 'post_type' => 'post','orderby' => 'date', 'order' => 'ASC' );

$the_query = new WP_Query( $args );


while ( $the_query->have_posts() ) :
        $the_query->the_post();
        the_time('l, F jS, Y');
        the_content();
        the_category();
endwhile;


wp_reset_postdata();

更新请求

get_header(); ?>

    <section id="primary" class="site-content">
        <div id="content" role="main">

        <?php if ( have_posts() ) : ?>
            <header class="archive-header">
                <h1 class="archive-title"><?php printf( __( 'Category Archives: %s' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?></h1>

            <?php if ( category_description() ) : // Show an optional category description ?>
                <div class="archive-meta"><?php echo category_description(); ?></div>
            <?php endif; ?>
            </header><!-- .archive-header -->

            <?php
            $args = array( 'post_status' => array( 'publish', 'future' ), 'post_type' => 'post','orderby' => 'date', 'order' => 'ASC' );

            $the_query = new WP_Query( $args );


            while ( $the_query->have_posts() ) :
                    $the_query->the_post();
                    the_time('l, F jS, Y');
                    the_content();
                    the_category();
            endwhile;


            wp_reset_postdata();
            ?>

        <?php else : ?>

        <?php endif; ?>

        </div><!-- #content -->
    </section><!-- #primary -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>

这是一个二十分之一的类别页面,显示: this page