wp_playlist_scripts()WP 3.9.0

Outputs and enqueues default scripts and styles for playlists.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

wp_playlist_scripts( $type );
$type(строка) (обязательный)
Type of playlist. Accepts 'audio' or 'video'.

Список изменений

С версии 3.9.0 Введена.

Код wp_playlist_scripts() WP 6.5.2

<?php
function wp_playlist_scripts( $type ) {
	wp_enqueue_style( 'wp-mediaelement' );
	wp_enqueue_script( 'wp-playlist' );
	?>
<!--[if lt IE 9]><script>document.createElement('<?php echo esc_js( $type ); ?>');</script><![endif]-->
	<?php
	add_action( 'wp_footer', 'wp_underscore_playlist_templates', 0 );
	add_action( 'admin_footer', 'wp_underscore_playlist_templates', 0 );
}