更改主页上的日期格式,wordpress?

时间:2012-04-08 20:47:26

标签: php wordpress date-format

这是我网页上日期格式的php代码

 function starkers_posted_on() {
    printf( __( 'Posted on %2$s by %3$s', 'starkers' ),
        'meta-prep meta-prep-author',
        sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time datetime="%3$s" pubdate>%4$s</time></a>',
            get_permalink(),
            esc_attr( get_the_time() ),
            get_the_date('Y-m-d'),
            get_the_date()
        ),
        sprintf( '<a href="%1$s" title="%2$s">%3$s</a>',
            get_author_posts_url( get_the_author_meta( 'ID' ) ),
            sprintf( esc_attr__( 'View all posts by %s', 'starkers' ), get_the_author() ),
            get_the_author()
        )
    );
}

它给出了这个

 Posted on <a href="#" title="23:50" rel="bookmark">
       <time datetime="2012-03-31" pubdate="">March 31 2012</time>
       </a> by <a href="#" title="View all posts by me">me</a>

我想要的是将月份,日期和年份分别包含在主页上的div中:

<div class="month">March</div>
<div class="date">31</div>
<div class="year">2012</div>

1 个答案:

答案 0 :(得分:0)

您可以通过将格式字符串参数传递到get_the_date()函数来执行此操作,如下所示:

你可以这样做:

sprintf('<div class="month">%s</div>', get_the_date('F'));
sprintf('<div class="date">%s</div>', get_the_date('j'));
sprintf('<div class="year">%s</div>', get_the_date('Y'));

<强>更新

或者在你的index.php文件(来自你的主题文件夹)中这样:

<div class="month"><?php get_the_date('F'); ?></div>
<div class="date"><?php get_the_date('j'); ?></div>
<div class="year"><?php get_the_date('Y'); ?></div>

此处使用的格式字符串如下:

  • F =月(作为一个单词)
  • j =每月的某一天(数字)
  • Y =年份(4位数字)

Check the docs here