apply_filters( 'wp_audio_shortcode_class', string $class, array $atts )

Filters the class attribute for the audio shortcode output container.


Parameters

$class string
CSS class or list of space-separated classes.
$atts array
Array of audio shortcode attributes.

Top ↑

Source

File: wp-includes/media.php. View all references

$atts['class'] = apply_filters( 'wp_audio_shortcode_class', $atts['class'], $atts );


Top ↑

Changelog

Changelog
Version Description
4.9.0 The $atts parameter was added.
3.6.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.