ai1ec_little_helper/index.php
2019-12-16 15:53:21 +01:00

22 lines
582 B
PHP

<?php
/*
Plugin Name: ai1ec little helper
Plugin URI:
Description: Aggiunge alcune feateure al plugin di wordpress all-in-one-event-calendar
Version: 0.2
Author: gin(e)
Author URI: http://ginex.indivia.net
License: BSD(3-clause) Licence
*/
add_action( 'admin_print_scripts', 'ea_load_js' );
function ea_load_js(){
wp_register_script( 'alh_admin_js', plugins_url('js/alh_admin.js', __FILE__), array('jquery'));
wp_enqueue_script('jquery');
wp_enqueue_script( 'alh_admin_js' );
}
/*add_action( 'wp_enqueue_scripts', 'alh_load_scripts' );
function alh_load_scripts($attrs){
}*/