28 lines
		
	
	
		
			657 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			657 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.4.2.min.js"></script>
 | |
| 	<script type="text/javascript" src="{$pdir}res/jquery-ui-1.8.2.custom.min.js"></script>
 | |
| 	<!-- end of jsUtils -->
 | |
| JSUTILS;
 | |
| }
 | |
| 
 | |
| ?>
 | 
