Wordpress 循环显示所有用户帖子,但 post_date
Wordpress Loop to Show all userposts but with post_date
如何获取列表中 post 名称旁边 post 的日期?我用下面的代码尝试了它,它将显示用户 post 的所有 post 名称,但只有第一个得到日期,我猜这是今天的日期,而不是 post 的日期]本身。
<!-- the loop -->
<?php while ( $wpb_all_query->have_posts() ) : $wpb_all_query->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php the_date(); ?></a></li>
<?php endwhile; ?>
<!-- end of the loop -->
而此代码 post 是 post 的名称和每个内容的内容。日期是错误吗?
<ul>
<!-- the loop -->
<?php while ( $wpb_all_query->have_posts() ) : $wpb_all_query->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php the_content(); ?></a></li>
<?php endwhile; ?>
<!-- end of the loop -->
</ul>
根据 Wordpress Codex 和 Wordpress Development Stack Exchange 上的其他帖子,函数 the_date()
每天每页仅显示一次 https://wordpress.stackexchange.com/a/125209。解决方案是改用函数 get_the_date()
。
如何获取列表中 post 名称旁边 post 的日期?我用下面的代码尝试了它,它将显示用户 post 的所有 post 名称,但只有第一个得到日期,我猜这是今天的日期,而不是 post 的日期]本身。
<!-- the loop -->
<?php while ( $wpb_all_query->have_posts() ) : $wpb_all_query->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php the_date(); ?></a></li>
<?php endwhile; ?>
<!-- end of the loop -->
而此代码 post 是 post 的名称和每个内容的内容。日期是错误吗?
<ul>
<!-- the loop -->
<?php while ( $wpb_all_query->have_posts() ) : $wpb_all_query->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php the_content(); ?></a></li>
<?php endwhile; ?>
<!-- end of the loop -->
</ul>
根据 Wordpress Codex 和 Wordpress Development Stack Exchange 上的其他帖子,函数 the_date()
每天每页仅显示一次 https://wordpress.stackexchange.com/a/125209。解决方案是改用函数 get_the_date()
。