如何更改wordpress

时间:2016-02-02 11:02:40

标签: wordpress comments

我正在处理我的wordpress主题,评论时间/日期显示在一个连续的时间戳标记中:

<time datetime="2015-12-21T19:09:49+00:00"> december 21st,  2015 on 19:09 </time>

我希望将时间包裹在span标签中,这样我就可以用css设置它。我主题上的comment.php文件使用它来列出注释,并且无法在此处编辑时间戳:

    <ol class="comment-list">
        <?php
            wp_list_comments( array(
                'style'       => 'ol',
                'format'      => 'html5',
                'short_ping'  => true,
            ) );
        ?>
    </ol>

我试着查看我的主题的functions.php,以及wordpress'包含文件:comment.php和comment-template.php。它们都没有处理时间戳的实际标签结构,因此没有任何东西供我使用。

有没有人知道我该怎么做?显然,我宁愿在我的主题的functions.php中这样做而不是改变wp inc的东西..

谢谢!

1 个答案:

答案 0 :(得分:0)

评论日期戳通常由以下内容定义: .comment-metadata a,.pingback .comment-edit-link 在style.css中搜索类似的东西,你可以设置它们的样式。