我有这段代码来显示我的帖子的日期。
<time datetime="<?php the_time('Y-m-j'); ?>" title="<?php the_time('F j, Y'); ?>">
<span class="post-date"><?php the_time('d'); ?></span>
<span class="post-month uppercase"><?php the_time('F'); ?></span>
</time>
我想添加发布帖子的确切时间。 正如在Wordpress论坛上看到的那样,我尝试添加下面的代码(适用于某些人)
<?php the_time('g:i a'); ?>
旁边的
<?php the_time('F j, Y'); ?>
但时间仍未显现。 你能告诉我为什么它不适合我吗?