解决wordpress首页调用多篇文章显示日期问题

在用wordpress建站时,遇到个很奇怪的问题

在首页文章列表,调用多篇文章时,不能同时显示发布日期,只能调出来一篇文章的发布日期,感觉很奇怪,经过网上查找,总结出下面的方法很合适解决这一问题。

方法如下。

调用:

<?php the_date_x(); ?>

函数:

//the_date_x()同时显示多篇在同一日期发表的文章
function the_date_x($d='', $before='', $after='', $echo = true) {
        global $id, $post, $day, $previousday, $newday;
        $the_date = '';
        $the_date .= $before;
        if ( $d=='' )
                $the_date .= mysql2date(get_option('date_format'), $post->post_date);
        else
                $the_date .= mysql2date($d, $post->post_date);
        $the_date .= $after;
        $previousday = $day;

        $the_date = apply_filters('the_date', $the_date, $d, $before, $after);
        if ( $echo )
                echo $the_date;
        else
                return $the_date;
}

交流QQ925474725  QQ群:122019913

by清晨20121112