尝试编辑category.php
– 或category-news.php
如果您有,您的CSS似乎表明您已经创建了一个“新闻”类别,但希望您知道您编辑了哪些文件,并添加了:
$withcomments = 1;
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
之间
get_template_part(\'content\', get_post_format() );
以及
endwhile
(在WordPress循环浏览每篇文章的位中。)
这将在分类页面上的每篇文章后添加一个评论表单(如果你有大量的文章,尤其是短篇文章,你可能会发现它太凌乱了。)
至于date, 214主题有一个函数,名为twentyfourteen_posted_on()
(在template-tags.php
文件)-打印日期和作者。
如果您检查它的工作方式,您将看到,您可以添加:
echo esc_html( get_the_date() );
自行打印日期,以及
get_the_date() 获取一个参数,该参数允许您使用标准自定义日期(和/或时间)的显示方式
PHP date format.
您还可以找到Template Hierarchy 有用-它解释了WordPress加载哪些模板文件来显示不同的页面。