1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
// Plugin Folder URL if ( !defined( 'PLUGIN_URL' ) ) { define( 'PLUGIN_URL', plugin_dir_url( __FILE__ ) ); } // Plugin Version if ( !defined( 'SCRIPT_VERSION' ) ) { define( 'SCRIPT_VERSION', '1.0.6' ); } function load_scripts() { wp_register_style( 'main-style', PLUGIN_URL . 'includes/css/style.css', array( ), SCRIPT_VERSION ); wp_register_script( 'custom', PLUGIN_URL . 'includes/js/custom.js', array( 'jquery' ), SCRIPT_VERSION, false ); wp_register_script( 'fitvids', PLUGIN_URL . 'includes/js/jquery.fitvids.js', array( 'jquery' ), SCRIPT_VERSION, false ); wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'custom' ); wp_enqueue_style( 'main-style' ); } add_action( 'wp_enqueue_scripts', 'load_scripts' ); |
Leave a reply