wp_video_shortcode_class

wp_video_shortcode_class

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_video_shortcode_class') is found 1 times:

  • /wp-includes/media.php line 3731
    3727
    3728
    3729
    3730
    3731
    3732
    3733
    3734
    3735
    3736
    3737
    *
     * @param string $class CSS class or list of space-separated classes.
     * @param array  $atts  Array of video shortcode attributes.
     */
    $atts['class'] = apply_filters( 'wp_video_shortcode_class', $atts['class'], $atts );
     
    $html_atts = array(
        'class'    => $atts['class'],
        'id'       => sprintf( 'video-%d-%d', $post_id, $instance ),
        'width'    => absint( $atts['width'] ),
        'height'   => absint( $atts['height'] ),