Smooth Div Scroll jquery plugin for wordpress -


the smooth div scroll jquery plugin need wordpress site making. don't know how add wordpress. 1 answer found in stackoverflow didn't work alas.

i not professional coder can follow copy , paste instructions pretty well. :)

so: have child theme functions.php understand need add there don't know love find out what. , add files js folder don't know what. , css files?

any appreciated! thank you.

here proper way add scripts theme. place script in [theme]/js directory , copy code below theme functions.php file. make sure code below updated correct path script , should go!

function properly_add_your_scripts() {     wp_register_script( 'smooth_div_scroll', get_template_directory_uri() . '/js/smoothdivscroll.js', array('jquery'), '1.0.0', true ); // true add in footer (recommended)     wp_enqueue_script('smooth_div_scroll'); }  add_action( 'wp_enqueue_scripts', 'properly_add_your_scripts' );   

Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -