显示撰写帖子的工作日。
原型
the_weekday_date( string $before = '', string $after = '' )
描述
如果当前帖子的工作日与前一个输出不同,则仅输出工作日。
参数
$before
(string)
(Optional)
在日期之前输出。
$after
(string)
(Optional)
日期后的输出。
源文件
路径:wp-includes/general-template.php
<?php
...
function the_weekday_date($before='',$after='') {
global $wp_locale, $currentday, $previousweekday;
$the_weekday_date = '';
if ( $currentday != $previousweekday ) {
$the_weekday_date .= $before;
$the_weekday_date .= $wp_locale->get_weekday( mysql2date( 'w', get_post()->post_date, false ) );
$the_weekday_date .= $after;
$previousweekday = $currentday;
}
/**
* Filters the localized date on which the post was written, for display.
*
* @since 0.71
*
* @param string $the_weekday_date
* @param string $before The HTML to output before the date.
* @param string $after The HTML to output after the date.
*/
$the_weekday_date = apply_filters( 'the_weekday_date', $the_weekday_date, $before, $after );
echo $the_weekday_date;
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/the_weekday_date/