0

wordpress index.php でこのクエリを使用して、投稿を表示し、日付 (最も古いものから ASC) で並べ替えています。query_posts が何らかの理由で機能しなかったため、このデータベース クエリを使用します。

http://pastebin.com/e7vVyKP9

ここで、カテゴリ ページでまったく同じクエリを使用したいと考えています。アクティブなカテゴリの投稿のみを表示するには、何らかの行を追加する必要があります。

誰にも解決策がありますか?

4

1 に答える 1

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(); ?>

これは、表示する 21 のカテゴリ ページです: このページ

于 2013-03-20T21:36:04.057 に答える