get_lastpostmodified хук-фильтрWP 2.3.0

Filters the most recent time that a post on the site was modified.

Использование

add_filter( 'get_lastpostmodified', 'wp_kama_get_lastpostmodified_filter', 10, 3 );

/**
 * Function for `get_lastpostmodified` filter-hook.
 * 
 * @param string|false $lastpostmodified The most recent time that a post was modified, in 'Y-m-d H:i:s' format. False on failure.
 * @param string       $timezone         Location to use for getting the post modified date. See get_lastpostdate() for accepted `$timezone` values.
 * @param string       $post_type        The post type to check.
 *
 * @return string|false
 */
function wp_kama_get_lastpostmodified_filter( $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()
get_lastpostmodified
wp-includes/post.php 7155
return apply_filters( 'get_lastpostmodified', $lastpostmodified, $timezone, $post_type );

Где используется хук в WordPress

Использование не найдено.