media_library_months_with_files хук-фильтрWP 4.7.4

Allows overriding the list of months displayed in the media library.

By default (if this filter does not return an array), a query will be run to determine the months that have media items. This query can be expensive for large media libraries, so it may be desirable for sites to override this behavior.

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

add_filter( 'media_library_months_with_files', 'wp_kama_media_library_months_with_files_filter' );

/**
 * Function for `media_library_months_with_files` filter-hook.
 * 
 * @param stdClass[]|null $months An array of objects with `month` and `year` properties, or `null` for default behavior.
 *
 * @return stdClass[]|null
 */
function wp_kama_media_library_months_with_files_filter( $months ){

	// filter...
	return $months;
}
$months(stdClass[]|null)
An array of objects with month and year properties, or null for default behavior.

Список изменений

С версии 4.7.4 Введена.

Где вызывается хук

wp_enqueue_media()
media_library_months_with_files
wp-includes/media.php 4689
$months = apply_filters( 'media_library_months_with_files', null );

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

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