the_modified_time

过滤钩子
apply_filters( 'the_modified_time', get_the_modified_time( $format )
参数
  • (string|false) $get_the_modified_time The formatted time or false if no post is found.
    Required:
  • (string) $format Format to use for retrieving the time the post was modified. Accepts 'G', 'U', or PHP date format.
    Required:
定义位置
相关勾子
get_the_modified_timethe_modified_dateget_the_modified_datethe_modified_authorget_post_modified_time
相关方法
the_modified_timeget_the_modified_timethe_modified_dateget_the_modified_datethe_modified_authorget_post_modified_time
引入
2.0.0
弃用
-

the_modified_time – 这是一个WordPress函数,显示一个文章最后被修改的时间。the_modified_time函数生成一个文本字符串,包含一个文章最后被修改的时间,可以用来在文章的页面或自定义模板中显示这个信息。这个信息对于显示文章的修改时间,以及跟踪文章的历史是很有用的。

过滤文章最后修改的本地化时间,用于显示。

echo apply_filters( 'the_modified_time', get_the_modified_time( $format ), $format );

常见问题

FAQs
查看更多 >