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 |
|---|---|
| 3004 | * of the default playlist output, returning the passed value instead. |
| 3005 | * |
| 3006 | * @since 3.9.0 |
| 3007 | * @since 4.2.0 The `$instance` parameter was added. |
| 3008 | * |
| 3009 | * @param string $output Playlist output. Default empty. |
| 3010 | * @param array $attr An array of shortcode attributes. |
| 3011 | * @param int $instance Unique numeric ID of this playlist shortcode instance. |
| 3012 | */ |
| 3013 | $output = apply_filters( 'post_playlist', '', $attr, $instance ); |
| 3014 | |
| 3015 | if ( ! empty( $output ) ) { |
| 3016 | return $output; |
| 3017 | } |
| 3018 | |
| 3019 | $atts = shortcode_atts( |
| 3020 | array( |
| 3021 | 'type' => 'audio', |
| 3022 | 'order' => 'ASC', |