| Server IP : 69.164.203.165 / Your IP : 216.73.216.219 Web Server : nginx/1.18.0 System : Linux localhost 6.14.3-x86_64-linode168 #1 SMP PREEMPT_DYNAMIC Mon Apr 21 19:47:55 EDT 2025 x86_64 User : www-data ( 33) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/matlock/wp-content/plugins/castbox/ |
Upload File : |
<?php
/**
* @package Castbox
* @version 1.6
*/
/*
Plugin Name: CastBox by Ike
Plugin URI: #
Description: This is a carousel, light box plugin.
Version: 1.0.0
Author URI: Eric Isaksen
*/
add_action('plugins_loaded', 'init_castbox');
function init_castbox(){
wp_enqueue_style( 'castbox', '/wp-content/plugins/castbox/castbox.css', array(), '1.0.0' );
wp_enqueue_script( 'castboxjs', '/wp-content/plugins/castbox/castbox.js', array( 'jquery'), '1.0.0' );
}
?>