How To Prevent Jquery.mousewheel.js From Loading On Pages In Wordpress
Ok, so I've managed to get horizontal scroll via mousewheel working for my my Wordpress site using the Expositio theme (http://wpshower.com/themes/expositio/) This uses Brandon Aar
Solution 1:
<?php
if(!is_page()) { ?>
<script type="text/javascript" src="<?php bloginfo("template_url"); ?>/includes/jquery.mousewheel.js"></script>
<?php } ?>
Post a Comment for "How To Prevent Jquery.mousewheel.js From Loading On Pages In Wordpress"