我在Wordpress上遇到了一个奇怪的问题,我自己无法解决这个问题,而且我也无法在这个网站和其他网站上找到答案。
基本上,我有一个自定义循环。
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_post_thumbnail(\'featured\'); ?></a>
<div class="datetitle">
<div class="dateonly"><?php the_date(\'d.m.Y\'); ?></div>
<div class="titleonly"><?php the_title(); ?></div>
</div>
<?php endwhile; ?>
<? wp_reset_postdata(); ?>
如果我随后创建了另一个类似于此的自定义查询,或者即使我只是将此查询进一步复制到我的页面,我也不会让php the\\u date返回任何值!这是最奇怪的事。。。我做错了什么?