get_the_date
和get_the_modified_date
使用date_format
设置->常规屏幕上的选项设置。在那里更改日期格式应该更改这些函数返回的日期格式,而不必更改216th。
您还可以使用相同名称的筛选器根据条件有条件地筛选日期。例如,在页面上显示不同的日期格式:
add_filter(\'get_the_date\',\'custom_get_the_date\',10,3);
function custom_get_the_date($the_date, $d, $post) {
if (is_page()) { // date display on pages
$d = \'jS M Y\'; // custom date format, see PHP date function
$post = get_post($post); if (!$post) {return $the_date;}
$the_date = mysql2date( $d, $post->post_date);
}
return $the_date;
}
add_filter(\'get_the_modified_date\',\'custom_get_the_modified_date\',10,2);
function custom_get_the_modified_date($the_time, $d) {
if (is_page()) {
$d = \'jS M Y\'; // custom date format, see PHP date function
$the_time = get_post_modified_time($d, null, null, true);
}
return $the_time;
}