WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
4437 | * |
4438 | * @since 4.7.4 |
4439 | * @since 4.8.0 The filter's default value is `true` rather than `null`. |
4440 | * |
4441 | * @link https://core.trac.wordpress.org/ticket/31071 |
4442 | * |
4443 | * @param bool|null $show Whether to show the button, or `null` to decide based |
4444 | * on whether any video files exist in the media library. |
4445 | */ |
4446 | $show_video_playlist = apply_filters( 'media_library_show_video_playlist', true ); |
4447 | if ( null === $show_video_playlist ) { |
4448 | $show_video_playlist = $wpdb->get_var( |
4449 | " |
4450 | SELECT ID |
4451 | FROM $wpdb->posts |
4452 | WHERE post_type = 'attachment' |
4453 | AND post_mime_type LIKE 'video%' |
4454 | LIMIT 1 |
4455 | " |