video-playlist-for-youtube
Last commit date
includes
6 years ago
index.php
6 years ago
readme.txt
6 years ago
video-playlist-ytb-plugin.php
6 years ago
vpfy-vplaylist-functions.php
6 years ago
vpfy-vplaylist-functions.php
23 lines
| 1 | <?php |
| 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | exit; // Exit if accessed directly |
| 4 | } |
| 5 | /*Register css and Js for Admin/back end*/ |
| 6 | add_action('admin_enqueue_scripts','vpfy_vplay_admin_enque'); |
| 7 | function vpfy_vplay_admin_enque(){ |
| 8 | wp_register_script('vpfyt-vplay-repeatmeta', VID_PLYLST_PLUGINURL.'includes/js/vpfy-vplay-metabox.js'); |
| 9 | wp_register_style('vpfy-vplay-adminstyle', VID_PLYLST_PLUGINURL.'includes/css/vpfy-vplaylist-admin-style.css'); |
| 10 | |
| 11 | } |
| 12 | |
| 13 | /*Register CSS and JS for front end*/ |
| 14 | add_action('wp_enqueue_scripts','vpfy_vplaylist_frontend_display_gallery'); |
| 15 | function vpfy_vplaylist_frontend_display_gallery(){ |
| 16 | wp_register_script('vpfy-playlist-min', VID_PLYLST_PLUGINURL.'includes/js/vpfy-vplay-playlist-min.js', array('jquery'), '1.0'); |
| 17 | wp_register_script('vpfy-playlist-video', VID_PLYLST_PLUGINURL.'includes/js/vpfy-vplay-playlist-video.js','', '1.0'); |
| 18 | |
| 19 | wp_register_style('vpfy-vplay-galcss', VID_PLYLST_PLUGINURL.'includes/css/vpfu-vplaylist-gallery.css'); |
| 20 | wp_register_style('vpfy-playlist-ryt-no-thumb', VID_PLYLST_PLUGINURL.'includes/css/vpfy-vplaylist-skin-right-no-thumb.css'); |
| 21 | wp_register_style('vpfy-playlist-ryt-thumb', VID_PLYLST_PLUGINURL.'includes/css/vpfy-vplaylist-skin-right-thumb.css'); |
| 22 | wp_register_style('vpfy-playlist-ryt-ttl-only', VID_PLYLST_PLUGINURL.'includes/css/vpfy-vplaylist-skin-right-title-only.css'); |
| 23 | } |