0

这是我网页上日期格式的 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>
4

1 回答 1

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 位数字)

在此处查看文档

于 2012-04-08T20:51:48.030 回答