Skip to content

Instantly share code, notes, and snippets.

@skuter80
Created May 27, 2010 03:47
Show Gist options
  • Save skuter80/415431 to your computer and use it in GitHub Desktop.
Save skuter80/415431 to your computer and use it in GitHub Desktop.
<?php
function add_slickslide_js($dropdown_options) {
//If we want Thematic dropdown features, we spit back the original options
echo $dropdown_options;
//Then we break out of PHP and add more stuff to the header:
?>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/jquery.js"></script>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/slickslide.js"></script>
<?php
}
add_filter('thematic_dropdown_options','add_slickslide_js');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment