the_date出现在首页,而不是帖子

时间:2014-09-19 23:52:27

标签: php wordpress

我已经通过编辑content.php将the_date放在首页上的帖子的入口标题上(例如http://atactilelife.com.au),但是当您点击链接将其显示为单个帖子时,日期会消失(例如http://atactilelife.com.au/meat-free-wednesday-asparagus-pumpkin-tart

我编辑哪个.php文件将其放入单个帖子?

更大的问题 - 当我通过像firefox或chrome这样的浏览器检查一个元素时,有没有办法告诉我应该编辑哪个.php文件?

谢谢!

2 个答案:

答案 0 :(得分:0)

我不确定,因为我没有尝试过这个,但是在该文件(content.php)上尝试在第25行和第26行之间添加此内容

这是第24到26行的简短预览

<?php if ( is_single() ) : ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
// post the code below here !! <-------------------------------------
<?php else : ?>

日期代码:

<div class="single-post-date">
    <span><?php the_time('d') ?></span>
    <span><?php the_time('M') ?></span>
</div>

我将日期包装在班级.single-post-date中,以便您可以根据需要对其进行成本化

答案 1 :(得分:0)

啊我弄明白了这个问题!我没有在if-then-else结构的else部分添加entrydate的代码。

解决方案是简单地将输出日期的代码行移动到endif语句之后,这样无论它是在单个帖子页面还是索引页面中都可以输出。