easing fix for wordpress [ 1111 views ]
Goal: run easing animations under my page.
The story similar to jQuery and wordpress one.
Find the header.php file in the theme directory and include two lines above <?php wp_head(); ?> like this
...
<?php
wp_enqueue_script("jquery");
wp_enqueue_script('easing', get_stylesheet_directory_uri() . '/js/jquery.easing.1.3.js');
wp_enqueue_script('easing-comp', get_stylesheet_directory_uri() . '/js/jquery.easing.compatibility.js');
?>
<?php wp_head(); ?>
...
see also: Easing Cheat Sheet



