the_modified_date

过滤钩子
apply_filters( 'the_modified_date', $the_modified_date, $format, $before, $after )
参数
  • (string|false) $the_modified_date The last modified date or false if no post is found.
    Required:
  • (string) $format PHP date format.
    Required:
  • (string) $before HTML output before the date.
    Required:
  • (string) $after HTML output after the date.
    Required:
定义位置
相关勾子
get_the_modified_datethe_modified_timethe_modified_authorget_the_modified_timethe_weekday_date
相关方法
the_modified_dateget_the_modified_datethe_modified_timethe_modified_authorget_the_modified_timeget_the_modified_author
引入
2.1.0
弃用
-

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

过滤显示一个文章最后修改的日期。

$the_modified_date = apply_filters( 'the_modified_date', $the_modified_date, $format, $before, $after );

常见问题

FAQs
查看更多 >