groups

name language licence
Wordpress: Page With Content From Only A Particular Category PHP BSD
LOADING JAVASCRIPT LIBRARIES IN WORDPRESS GENERATED PAGE PHP BSD
Current Page Item PHP BSD
DISPLAY THE FIRST IMAGE ATTACHMENT OF A WORDPRESS POST PHP BSD
WORDPRESS TEMPLATE URL PHP BSD
WORDPRESS BLOG URL PHP BSD
WORDPRESS INCLUDE FILE PHP BSD
WORDPRESS GET TITLE OR ALT. TITLE PHP BSD

< 1 2 3 4 5 6 7 8 9 >



language: PHP
licence: BSD

LOADING JAVASCRIPT LIBRARIES IN WORDPRESS GENERATED PAGE

options: view full snippetsend to code collector
//Load jQuery into WordPress generated pages, the wpenqueuescript function can be used in plugins as well. OR Add and load a new script that depends on jQuery (this will also cause it to load jQuery into the page as well).


<?php wp_enqueue_script('jquery'); ?>  
 
<?php wp_enqueue_script('jquery'); ?>
 
 
 
<?php wp_enqueue_script('newscript','/wp-content/plugins/someplugin/js/newscript.js',array('jquery'),'1.0' ); ?>
	
(Continues...)