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
Post a Comment