博客列表没有显示每个帖子的日期和图片上缺失的箭头

时间:2016-01-14 作者:csharpdude77

我试图让博客看起来和第一篇文章一样,但由于某种原因,日期消失了,图像顶部的箭头也消失了。

您可以查看我的网站here.

当前代码:

<style>

    #title_wrapper {
        width: 488px;
    }

    h2 {
        font-size: 18px;
        font-familly: verdana, arial, sans-serif;
        line-height: 16px;
        display: inline;
        padding: 2px;
    }

    #dateinfo {
        font-weight: bold;
    }

    #gonnaBeOnTheBottom {
        position: absolute;
        bottom: 5px;
    }

</style>

<div id="main-content" class="main-content">
    <?php if(is_front_page()) {
        get_template_part(\'featured-content\');
    } ?>

    <div class="full-width page-header">
        <div class="row">
            <div class="column">
                <h1>Blog</h1>
            </div>
        </div>
    </div>

    <div class="row  show-for-medium-up">
        <div class="column breadcrumb">
            <?php if(function_exists(\'yoast_breadcrumb\')) {
                //echo __(\'Home\',TD) . \' > \';
                yoast_breadcrumb(\'<span id="breadcrumbs">\', \'</span>\');
            } ?>

            <?php if(function_exists(\'bcn_display_list_multidim_children\')) { ?>
                <ul class="breadcrumbs">
                    <?php bcn_display_list_multidim_children(); ?>
                </ul>
            <?php } ?>

            <span style="float:right;">
                    <a href="<?php bloginfo(\'rss2_url\'); ?>" title="RSS 2.0 Feed"><img
                            src="<?php bloginfo(\'template_directory\'); ?>/images/rssfeed.png" width="image_width"
                            height="image_height" alt="RSS 2 Feed"/></a>
                </span>
        </div>
    </div>

1 个回复
最合适的回答,由SO网友:Mike 整理而成

如果我理解正确的话,我最近确实对此有过一些问题。

最终,我明白了默认情况下,the_date() 将仅显示first post 在某一天。

如果您正在使用the_date 你需要用别的东西来代替它。我通常只使用echo get_the_date().

相关推荐

为什么我的主题的css在另一个网站上不起作用

我在Neve theme的基础上开发我的on theme。首先,我对脚本有问题,因为它不起作用,但我不得不从页脚更改它们的位置。php到标题。php的一切都很好。新的一些脚本无法工作,因为css根本没有加载。我尝试了5种不同的方法,但都失败了。标题中的。php我只是给他们<style> </style></我在函数中使用了寄存器样式。php,标题。php和页脚。php function my_theme_enqueue_styles() { &#x