我在我的 wordpress index.php 上使用这个查询来显示帖子并按日期对它们进行排序(最早的第一个 ASC)。我使用这个数据库查询是因为 query_posts 出于某种原因对我不起作用。
现在我想在我的类别页面上使用完全相同的查询。我必须以某种方式添加一些行,以便仅显示处于活动状态的类别的帖子。
有没有人有办法解决吗?
我在我的 wordpress index.php 上使用这个查询来显示帖子并按日期对它们进行排序(最早的第一个 ASC)。我使用这个数据库查询是因为 query_posts 出于某种原因对我不起作用。
现在我想在我的类别页面上使用完全相同的查询。我必须以某种方式添加一些行,以便仅显示处于活动状态的类别的帖子。
有没有人有办法解决吗?
好的,根据您发布的信息,您可以使用以下内容:
$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(); ?>
这是一个二十二个类别的页面,显示: 这个页面