28 lines
658 B
PHP
28 lines
658 B
PHP
<?php
|
|
/*
|
|
Plugin Name: jQuery
|
|
Version: 2.0
|
|
Plugin URI: http://www.vdfn.altervista.org/
|
|
Description: provides <a href="http://jquery.com/" title="jQuery">jQuery</a>
|
|
Author: Piero VDFN
|
|
Author URI: http://www.vdfn.altervista.org/
|
|
*/
|
|
|
|
## Original author: NoWhereMan (http://www.nowhereland.it)
|
|
|
|
add_action('wp_head', 'plugin_jquery_head', 0);
|
|
|
|
|
|
function plugin_jquery_head() {
|
|
|
|
$pdir=plugin_geturl('jquery');
|
|
echo <<<JSUTILS
|
|
<!-- start of jsUtils -->
|
|
<script type="text/javascript" src="{$pdir}res/jquery-1.7.1.min.js"></script>
|
|
<script type="text/javascript" src="{$pdir}res/jquery-ui-1.8.11.custom.min.js"></script>
|
|
<!-- end of jsUtils -->
|
|
JSUTILS;
|
|
}
|
|
|
|
?>
|