Arkadaşlar doğru yeremi konu açtım bilmiyorum ama acil çözüme ihtiyacım var. Wordpresste bir eklenti kullanıyorum eklenti de yer alan kodlar şunlar

//============================== insert HTML header tag ========================//
add_action( 'wp_head', 'galleria_wp_headers', 10 );
function galleria_wp_headers() {

	$galleria_wp_plugin_path = 
		get_option('siteurl')."/wp-content/plugins/galleria-wp";
		
	$galleria_wp_style_path = "";
	
	$galleria_wp_style_path .= 
		"<link rel=\"stylesheet\" type=\"text/css\" " . 
		"href=\"$galleria_wp_plugin_path/css/galleria_wp.css\" media=\"screen\" />\n";

	   $galleria_wp_style_path .= 
	   "<link rel=\"stylesheet\" type=\"text/css\" " . 
	   "href=\"$galleria_wp_plugin_path/skins/metal/skin.css\" media=\"screen\" />\n";
	   
	$galleria_wp_script_path = "";
	
	$galleria_wp_script_path .= 
		"<script type='text/javascript' ". 
		"src='$galleria_wp_plugin_path/js/jquery-1.2.6.min.js'></script>\n";
	
	$galleria_wp_script_path .= 
		"<script type='text/javascript' ".
		"src='$galleria_wp_plugin_path/js/jquery.galleria.js'></script>\n";

	$galleria_wp_script_path .= 
		"<script type='text/javascript' ".
		"src='$galleria_wp_plugin_path/js/jquery.jcarousel.js'></script>\n";

	echo "<!--	Galleria WP	 [ BEGIN ] --> \n";
	echo $galleria_wp_style_path;
	echo $galleria_wp_script_path;
	echo "<!--	Galleria WP	 [ END ] --> \n";
}

//==============================  Javascript Loader  ==========================//
//add_action( 'get_header', 'galleria_wp_load_js', 30);
function galleria_wp_load_js() {

	$galleria_wp_plugin_path = 
		get_option('siteurl')."/wp-content/plugins/galleria-wp";

	wp_enqueue_script('jquery');

	wp_enqueue_script('jcarousel', 
					  $galleria_wp_plugin_path .'/js/jquery.jcarousel.js', 
					  array('jquery')); 

	wp_enqueue_script('galleria', 
					  $galleria_wp_plugin_path .'/js/jquery.galleria.js', 
					  array('jquery'));
}

add_action( 'wp_head', 'galleria_wp_headers', 10 ); bu satırdaki kod yuzunden aşağıdaki kodları head içine ekliyor ben istiyorum ki örneğin bu kodu footera eklesin

head içine eklediği kod
<script type='text/javascript' src='http://www.siteadi.com/wp-content/plugins/galleria-wp/js/jquery-1.2.6.min.js'></script>
<script type='text/javascript' src='http://www.siteadi.com/wp-content/plugins/galleria-wp/js/jquery.galleria.js'></script>
<script type='text/javascript' src='http://www.siteadi.com/wp-content/plugins/galleria-wp/js/jquery.jcarousel.js'></script>
Böyle bi şey mümkün mü acaba arkadaşlar ? Bilen arkadaşlar yardımcı olursa çok çok minnettar olurum. Şimdiden teşekkürler.