0
現在、最近の投稿を読み込んだ後に日付を表示してWordpressで少し問題があります。the_date();追加投稿後に表示されない
最新の投稿では、投稿に日付が表示されます。以前の投稿には日付が表示されません。
私はthe_time()を使用して投稿が作成された時刻を取得しています。これは、連続するすべての投稿すべてでうまく機能しています。ここで
は私のHTMLです:
<div class="sectionContainer col-xs-10">
<div class="sectionHeader">
<p>Recent posts <img src="<?php bloginfo('template_directory'); ?>/gator-alt.svg" class="img-responsive pull-right"></p>
</div>
<div class="postContainer">
<?php query_posts('showposts=5');
if(have_posts()): while(have_posts()): the_post(); ?>
<p class="postTitle">
<?php the_title(); ?>
</p>
<p class="postDateTime">
<?php the_date();?> @
<?php the_time();?>
</p>
<div class="postContentContainer">
<p class="postContents">
<?php the_content(); ?>
</p>
</div>
<?php endwhile;
endif;
?>
</div>
そして、ここでは完全に何が起こっているのかを描いているイメージです。あなたは最新の投稿が日付を表示しているのを見ることができます。以前の投稿は日付を表示していません。
を使用してみてください;) –
絶対に。ご協力いただきありがとうございます。これは私の最初のWordpressのテーマなので、私はかなり基本的な質問hahaをお願いしました。 –