post_date_column_time

过滤钩子
apply_filters( 'post_date_column_time', $t_time, $post, 'date', $mode )
参数
  • (string) $t_time The published time.
    Required:
  • (WP_Post) $post Post object.
    Required:
  • (string) $column_name The column name.
    Required:
  • (string) $mode The list display mode ('excerpt' or 'list').
    Required:
定义位置
相关勾子
post_date_column_statusmedia_date_column_timepost_column_taxonomy_linksrest_delete_commentpost_type_archive_title
相关方法
get_post_datetimewp_update_commentexport_date_optionspost_type_archive_titlewp_update_term_countget_comment_time
引入
5.5.0
弃用
-

post_date_column_time: 这个钩子允许你修改WordPress仪表盘上的文章管理屏幕上的文章日期列中使用的时间格式。你可以使用这个钩子来改变时间格式,比如从24小时到12小时,或者添加自定义的时区。

过滤文章的发布时间。

echo apply_filters( 'post_date_column_time', $t_time, $post, 'date', $mode );

常见问题

FAQs
查看更多 >