WP Manifestindependent plugin directory
manifest / media / wp-youtube-playlists

Ntz Youtube Playlist Embed

embed youtube playlists on wordpress pages/posts

by Ionuț Staicu · github.com/iamntz/wp-youtube-playlists

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/iamntz/wp-youtube-playlists/archive/refs/heads/master.zip

Readme

Broken plugin

Due to Youtube API changes, this plugin no longer works. Maybe I'll fix it sometime in the future (PR welcome!), but you'd better search for other alternatives.


Embed Youtube Playlist on WordPress posts

[yt_playlist id="http://www.youtube.com/playlist?list=PLAFF87E4DC940D286"]

screenshot

Todo:

  1. improve CSS
  2. improve description formatting
  3. add pagination for playlists with many items

Tips & Tricks:

You can disable built in JS or CSS by deregistering corresponding youtube-playlist handle (you must call these on wp_enqueue_scripts hook!).

<?php 
  wp_deregister_script( 'youtube-playlist' );
  wp_deregister_style( 'youtube-playlist' );
?>

wp_deregister_script wp_deregister_style

Read the full README on GitHub →