这是我的index.php代码
<
?php get_header();
?>
<
div class="container">
<
div class="row">
<
?php
if (have_posts()) {
while (have_posts()) {
the_post();
?>
<
div class="col-sm-6">
<
div class="main-post">
<
a href="http://www.srcmini.com/<
?php the_permalink();
?>">
<
h3 class="post-title">
<
?php the_title();
?>
<
/h3>
<
/a>
<
a href="http://www.srcmini.com/<
?php get_the_author_link() ?>">
<
span class="author">
<
i class="ion-android-person">
<
/i>
<
?php the_author();
?>
<
/span>
<
/a>
<
span class="date">
<
i class="ion-ios-clock">
<
/i>
<
?php the_date('F j, Y');
?>
<
/span>
<
span class="comments">
<
i class="ion-chatbubble-working">
<
/i>
20 comments<
/span>
<
img class="img-thumbnail img-fluid" src="https://placehold.it/600x200/555" >
<
p class="post-content">
Mouth. It when to finds at should, for queen more uninitiated to what are negotiations the reached understood. Making to company, it's musical for notice and with are he my size all having bad completely ran explain right the counter-productive like in just energetic other misleads brains the to more.<
/p>
<
hr>
<
p class="categories">
<
i class="ion-pricetag">
<
/i>
<
?php the_category(', ') ?>
<
/p>
<
/div>
<
/div>
<
?php
} // end while
} // end if
?>
<
/div>
<
!-- end row-->
<
/div>
<
!--end container-->
<
?php get_footer();
?>
这是我在浏览器中得到的:
文章图片
我的问题是:为什么日期仅出现在第一篇文章中?
#1 【获取WordPress中帖子日期的问题】尝试这个:
<
span class="date">
<
i class="ion-ios-clock">
<
/i>
<
?php echo get_the_date('F j, Y');
?>
<
/span>
代替这个:
<
span class="date">
<
i class="ion-ios-clock">
<
/i>
<
?php the_date('F j, Y');
?>
<
/span>
解释
以下解释不是我自己的;这是由凯撒(Kaiser)-WPDSE, 所以。
当你查看the_date()函数的源代码时, 你会注意到两个全局变量:
global $currentday, $previousday;
然后有一个规则, 即是否要显示日期… 。该检查类似于使用is_new_day()进行的检查:
if ( $currentday != $previousday ) {// show date// Set global
$previousday = $currentday;
}
// else
return null;
如你所见, $ previousday立即设置为$ currentday; 。因此, 它会回声一次。在那之后, 这两天都是一样的, 检查将失败。这就是为什么你的第一篇文章显示它, 而其他人则不显示它的原因。
参考:如果其他帖子具有相同的日期, 则该帖子不显示日期
推荐阅读
- 有什么方法可以从httrack上传wordpress主题下载吗()
- woocommerce中每页的产品数量
- woocommerce更新后,”-“和” +”数量按钮不启用购物车更新按钮
- 使用”我的自定义功能”插件编辑wordpress网站的页脚版权声明后,我的网站已关闭
- 高级自定义字段现在根本不保存
- 高级自定义字段(ACF)小部件字段未在Elementor WordPress插件中渲染
- 调整任意Divi模块中的代码
- 配置grafana直连zabbix数据库
- zabbix使用percona插件监控mysql数据库(十九)