| | 6252 | /** |
| | 6253 | * Filter the post type of which to get the latest modified or published time. |
| | 6254 | * |
| | 6255 | * @since 5.x |
| | 6256 | * |
| | 6257 | * @param string $post_type Optional. The post type to check. Default 'any'. |
| | 6258 | * @param string $timezone The timezone for the timestamp. See get_lastpostdate(). |
| | 6259 | * for information on accepted values. |
| | 6260 | * @param string $field Post field to check: 'date' or 'modified'. |
| | 6261 | * @return string |
| | 6262 | */ |
| | 6263 | $post_type = apply_filters( '_get_last_post_time_post_type', $post_type, $timezone, $field ); |
| | 6264 | |