Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_playlist

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
2621       * of the default playlist output, returning the passed value instead.
2622       *
2623       * @since 3.9.0
2624       * @since 4.2.0 The `$instance` parameter was added.
2625       *
2626       * @param string $output   Playlist output. Default empty.
2627       * @param array  $attr     An array of shortcode attributes.
2628       * @param int    $instance Unique numeric ID of this playlist shortcode instance.
2629       */
2630      $output = apply_filters( 'post_playlist', '', $attr, $instance );
2631
2632      if ( ! empty( $output ) ) {
2633           return $output;
2634      }
2635
2636      $atts = shortcode_atts(
2637           array(
2638                'type'         => 'audio',
2639                'order'        => 'ASC',