Embed jquery.corner.js in Wordpress? -


i embed jquery.corner.js in wordpress theme, had no luck...

what proper way embed script in wordpress theme , use it?

this script's url, in case: http://www.malsup.com/jquery/corner/

thank you! :)

you should use wp_register_script , wp_enqueue_script. add file theme folder.

function include_jquery_corner(){   wp_register_script( 'jq_corner', get_template_directory_uri() . 'path js file' );   wp_enqueue_script( 'jq_corner' ); }  add_action( 'wp_enqueue_scripts', 'include_jquery_corner' ); 

Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -