media_library_show_video_playlist filter-hook . WP 4.7.4
Allows showing or hiding the "Create Video Playlist" button in the media library.
By default, the "Create Video Playlist" button will always be shown in the media library. If this filter returns null, a query will be run to determine whether the media library contains any video items. This was the default behavior prior to version 4.8.0, but this query is expensive for large media libraries.
Usage
add_filter( 'media_library_show_video_playlist', 'filter_function_name_6546' ); function filter_function_name_6546( $show ){ // filter... return $show; }
- $show(true/false/null)
- Whether to show the button, or null to decide based on whether any video files exist in the media library.
Changelog
Since 4.7.4 | Introduced. |
Since 4.8.0 | The filter's default value is true rather than null. |
Where the hook is called
media_library_show_video_playlist
wp-includes/media.php 4159
$show_video_playlist = apply_filters( 'media_library_show_video_playlist', true );