apply_filters( 'media_library_infinite_scrolling', bool $infinite_scrolling )
- Since
- 5.8.0, 7.1.0
Filters whether the Media Library grid has infinite scrolling. Default
true.Description
This setting respects the current user's "Infinite Scrolling" personal option, but a filter callback takes precedence over that preference.
Compatibility
- WordPress
- since 7.1.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$infinite_scrollingbool- Whether the Media Library grid has infinite scrolling.
Where this hook fires · 1
wp-includes/media.php:5080wp_enqueue_media()
Source code
* * @since 5.8.0 * @since 7.1.0 Changed default to `true` and introduced per-user opt-out of infinite scrolling. * * @param bool $infinite_scrolling Whether the Media Library grid has infinite scrolling. */ $infinite_scrolling = apply_filters( 'media_library_infinite_scrolling', $infinite_scrolling ); $settings = array( 'tabs' => $tabs, 'tabUrl' => add_query_arg( array( 'chromeless' => true ), admin_url( 'media-upload.php' ) ), 'mimeTypes' => wp_list_pluck( get_post_mime_types(), 0 ), /** This filter is documented in wp-admin/includes/media.php */Changelog
Introduced in 5.8.0. 2 changes between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
7.1.0
Parameter
$infinite_scrolling added.verified against source7.1.0
Parameter
$infinite removed.verified against source7.1.0
Changed default to
true and introduced per-user opt-out of infinite scrolling.from the docblock5.8.0
Introduced.from the docblock
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.