apply_filters( ‘media_library_show_audio_playlist’, bool|null $show )

In this article

Allows showing or hiding the “Create Audio Playlist” button in the media library.

Description

By default, the "Create Audio 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 audio items. This was the default behavior prior to version 4.8.0, but this query is expensive for large media libraries.

Parameters

$showbool|null
Whether to show the button, or null to decide based on whether any audio files exist in the media library.

Source

* @since 4.8.0 The filter's default value is `true` rather than `null`.

Changelog

VersionDescription
4.8.0The filter’s default value is true rather than null.
4.7.4Introduced.

User Contributed Notes

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