Typecho 博客文章列表添加日期和作者信息
Typecho 博客文章列表添加日期和作者信息
如何在 Typecho 博客文章列表中加入日期与作者内容?可以通过在循环中添加以下代码来加入日期和作者信息:
<?php while($this->next()): ?>
<article>
<h2><a href='<?php $this->permalink() ?>'><?php $this->title() ?></a></h2>
<div class='meta'>
<span class='date'><?php $this->date('Y-m-d'); ?></span>
<span class='author'><?php $this->author(); ?></span>
</div>
<div class='content'><?php $this->content('Read More'); ?></div>
</article>
<?php endwhile; ?>
在上述代码中,$this->date('Y-m-d') 用于显示文章发布日期,$this->author() 用于显示文章作者信息。您可以根据需要自定义日期和作者信息的格式。
原文地址: https://www.cveoy.top/t/topic/ocCk 著作权归作者所有。请勿转载和采集!