get_lastpostmodified хук-фильтр . WP 2.3.0
Filters the most recent time that a post on the site was modified.
Использование
add_filter( 'get_lastpostmodified', 'filter_function_name_1661', 10, 3 ); function filter_function_name_1661( $lastpostmodified, $timezone, $post_type ){ // filter... return $lastpostmodified; }
- $lastpostmodified(строка/false)
- The most recent time that a post was modified, in 'Y-m-d H:i:s' format. False on failure.
- $timezone(строка)
- Location to use for getting the post modified date. See get_lastpostdate() for accepted $timezone values.
- $post_type(строка)
- The post type to check.
Список изменений
С версии 2.3.0 | Введена. |
С версии 5.5.0 | Added the $post_type parameter. |
Где вызывается хук
get_lastpostmodified
wp-includes/post.php 6828
return apply_filters( 'get_lastpostmodified', $lastpostmodified, $timezone, $post_type );