Karen
Karen

Reputation: 11

Media-Element.js and Wordpress Usage

I understand that media-element.js is now part of the WordPress core according to mejs website. How do I use it with WordPress?

Is there documentation somewhere besides what is on mejs website?

Upvotes: 0

Views: 383

Answers (1)

Yoav Kadosh
Yoav Kadosh

Reputation: 5155

Please see wp_enqueue_script

function my_scripts() {
    wp_enqueue_script( 'wp-mediaelement' );
}
add_action( 'wp_enqueue_scripts', 'my_scripts' );

Upvotes: 1

Related Questions