参数
$the_date
string|int-
如果
$format
是'U'
或'G'
,则格式化日期字符串或Unix时间戳。 $format
string-
PHP日期格式。
$post
WP_Post-
post对象。
源码
更新日志
版本 | 描述 |
---|---|
3.0.0 | 开始引入 |
使用示例
从Codex迁移的示例:
以下是如何使用
get_the_date
过滤器修改名为“product”的文章类型的日期格式的基本示例:add_action( 'get_the_date', 'my_project_filter_publish_dates', 10, 3 ); function my_project_filter_publish_dates( $the_date, $d, $post ) { if ( is_int( $post) ) { $post_id = $post; } else { $post_id = $post->ID; } if ( 'product' != get_post_type( $post_id ) ) return $the_date; return date( 'Y-d-m - h:j:s', strtotime( $the_date ) ); }