post_playlist WordPress Filter Hook
The post_playlist hook is triggered when a playlist is created or updated. It allows you to perform an action when a playlist is created or updated.
apply_filters( 'post_playlist', string $output , array $attr , int $instance ) #
Filters the playlist output.
Description
Returning a non-empty value from the filter will short-circuit generation of the default playlist output, returning the passed value instead.
Parameters
- $output
(string)Playlist output. Default empty.
- $attr
(array)An array of shortcode attributes.
- $instance
(int)Unique numeric ID of this playlist shortcode instance.
Source
File: wp-includes/media.php
Changelog
Version | Description |
---|---|
4.2.0 | The $instance parameter was added. |
3.9.0 | Introduced. |