php - 为什么不显示周围时间? WordPress的

标签 php html css wordpress

我有这个链接:

http://www.dg-design.ch/blog/page/2/

PHP 代码:

    <?php while ( have_posts() ) : the_post(); ?>

    <?php if( $wp_query->current_post == 0 ){ ?>
        <li class="block first-post">
            <a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php the_post_thumbnail('vantage-grid-loop'); ?></a>
            <h3><a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php the_title(); ?></a></h3><br><p class="italic"><?php the_date(); ?></p>
            <p><?php echo substr(get_the_content(),0,600).'...'; ?></p>
        </li>
    <?php } else if( $wp_query->current_post > 0 && $wp_query->current_post < 5 ) { ?>
    <li class="block">
        <a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php the_post_thumbnail('blog'); ?></a>
        <h3><a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php echo substr(get_the_title(),0,20).'...'; ?></a></h3><br>
              <p class="italic"> <?php the_date(); ?></p>
        <p><?php echo substr(get_the_content(),0,70).'...'; ?></p>
    </li>
    <?php } else { ?>
    <li class="block">
        <a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php the_post_thumbnail('blog'); ?></a>
        <h3><a href="<?php the_permalink(); ?>" class="fancybox-iframe"><?php the_title(); ?></a></h3><br>
<p class="italic"><?php the_date(); ?></p>
        <p><?php echo substr(get_the_content(),0,600).'...'; ?></p>
    </li>
    <?php } ?>

        <?php //get_template_part( 'content', get_post_format() ); ?>

    <?php endwhile; ?>

我放一张图来更好地理解他们想要什么。

enter image description here

在博客的第一页显示日期,其余页面不显示,不明白为什么。

你能帮我解决这个问题吗?

提前致谢!

最佳答案

请检查屏幕截图并检查设置是否正确。 enter image description here

关于php - 为什么不显示周围时间? WordPress的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30801702/

相关文章:

php - SQL 查询无法正常工作(数字)

javascript - pugjs (jade 模板) - 删除 block 语句中的换行符

html - File 对象中 webkitRelativePath 属性的用途是什么?

css - 宽度为100%的div,紧挨着一个固定宽度的div

php - 自动将查询转换为 zend db select

javascript - 简单的 WordPress AJAX 导致 400 错误

html - Flexbox 作为 Firefox 和 Opera 上表格的替代品

css - 在 css 中一次访问表中的所有标签

php - 如何检测模型事件中的强制删除

javascript - 如何以编程方式从另一个网站抓取图像?