apply_filters( ‘media_library_months_with_files’, stdClass[]|null $months )

In this article

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

Description

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.

Parameters

$monthsstdClass[]|null
An array of objects with month and year properties, or null for default behavior.

Source

$months = apply_filters( 'media_library_months_with_files', null );

Changelog

VersionDescription
4.7.4Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.