0

当您单击日历并发布帖子时,我正在尝试更改日期。

目前标题为 Y,m,d(2012 年 12 月 20 日),我想将其更改为 l,F j,Y 为(2012 年 12 月 20 日,星期四)。

我操作哪个 PHP Wordpress 文件来进行此更改?

干杯

约翰

4

1 回答 1

0

请做一件事,只需在functions.php中用下面的函数替换函数twentyeleven_posted_on()希望它会给你你需要的日期格式。

function twentyeleven_posted_on() {
    printf( __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'twentyeleven' ),
        esc_url( get_permalink() ),
        esc_attr( get_the_time() ),
        esc_attr( get_the_date( 'l, F j, Y' ) ),
        esc_html( get_the_date() ),
        esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
        esc_attr( sprintf( __( 'View all posts by %s', 'twentyeleven' ), get_the_author() ) ),
        get_the_author()
    );
}
于 2012-12-20T12:11:38.537 回答