我正在尝试将类别链接重定向到第一个子帖子。我在中使用以下代码category.php
. 这会重定向,但链接不会转到第一个子帖子。我如何重定向到第一个子帖子,按照ASC的日期顺序?
/*
Category Template:
Template URI:
Description:
*/
if ( have_posts() ) :
while ( have_posts() ) : the_post();
wp_redirect( get_permalink( $post->ID ) );
endwhile;
endif;