Skip to content

Instantly share code, notes, and snippets.

@jb510
Created September 9, 2012 06:52
Show Gist options
  • Save jb510/3683059 to your computer and use it in GitHub Desktop.
Save jb510/3683059 to your computer and use it in GitHub Desktop.
/**
* jb_load_stylesheet add cssfx class to stylesheet()
*/
remove_action( 'genesis_meta', 'genesis_load_stylesheet' );
add_action( 'genesis_meta', 'jb_load_stylesheet_cssfx' );
function jb_load_stylesheet_cssfx() {
echo '<link rel="stylesheet" href="'.get_bloginfo( 'stylesheet_url' ).'" type="text/css" media="screen" class="cssfx"/>'."\n";
wp_enqueue_script('jb_cssfx', CHILD_URL.'/lib/js/cssfx.min.js', array('jquery'), TRUE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment