I added this to my function.php
function scripts() {
if ( !is_admin() ) { // this if statement will insure the following code only gets added to your wp site and not the admin page cause your code has no business in the admin page right unless that's your intentions
// your own script
wp_register_script('yourscript', ( get_bloginfo('template_url') . 'jquery-1.3.2.js'), false); //first register your custom script wp_enqueue_script('swfobject'); // then let wp insert it for you or just delete this and add it directly to your template
// just in case your also interested
wp_register_script('yourJqueryScript', ( get_bloginfo('template_url') . '/yourJquery.js'), array('jquery')); // this last part-( array('jquery') )is added in case your script needs to be included after jquery
wp_enqueue_script('yourJqueryScript'); // then print. it will be added after jquery is added
} }
add_action( 'wp_print_scripts', 'scripts'); // now just run the function
but it does not work.
BTW I have already uploaded the jquery-1.3.2.js to my service
Could anyone help me,
Thanks


This topic is locked








