我想在wordpress上的tags-overview-page中显示页面的日期, 但只在首页预览中显示, 而其他页面则不显示。虽然其他内容(标题和摘录)正确地得到了回应, 所以我猜循环没有问题。
那是我的标记:
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
?>
<div class="col col-4 kategorie_block">
<a href="<?php the_permalink() ?>">
<h6>↬
<?php the_date(); ?>
</h6>
<!-- ......... Other elements with simple things like <h1> <?php the_title(); ?> on the same hierarchy ... -->
}
}
发生的是, 所有预览块确实具有所有必要的内容。仅第一个预览仅显示日期, 而其他所有预览框仅显示↬。
那里怎么了
#1
抱歉, 内容重复。答案已经在这里:使用get_posts显示wordpress帖子-第一个帖子没有日期
基本上, 你必须切换到echo get_the_date();。显示所有循环块的日期。
评论前必须登录!
注册