要在WordPress博客中自定义文章的时间格式,可以使用the_time()函数,并在其中传递合适的时间格式参数。以下是一些示例:
the_time()
<?php the_time('Y年n月j日 G:i:s'); ?>
<?php the_time('Y年n月j日'); ?>
<?php the_time('G:i:s'); ?>
<?php the_time('njY'); ?>
只需将所需的时间格式字符串传递给the_time()函数,就可以根据你的喜好自定义文章时间的显示方式。