Using system date format

时间:2017-07-12 作者:name name2

我有WordPress主题,我使用get\\u the\\u date函数显示帖子数据:

<?php echo get_the_date( \'M-d-y\' ); ?>
但似乎最好使用get\\u选项(“date\\u格式”)。

如何使用get\\u option函数显示post数据?

1 个回复
SO网友:mrmadhat

使命感get_the_date( get_option(\'date_format\') ); 将返回与get_the_date(); 这是因为默认情况下,如果在调用函数时未指定日期格式,它将使用get_option(\'date_format\'); 从以下摘自get_the_date() 功能本身:

if ( \'\' == $d ) {
    $the_date = mysql2date( get_option( \'date_format\' ), $post->post_date );
} else {
    $the_date = mysql2date( $d, $post->post_date );
}

结束