Skip to content

Instantly share code, notes, and snippets.

@studiopress
Last active December 17, 2015 07:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save studiopress/5570624 to your computer and use it in GitHub Desktop.
Save studiopress/5570624 to your computer and use it in GitHub Desktop.
Genesis scripts.
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Disable the superfish script
add_action( 'wp_enqueue_scripts', 'sp_disable_superfish' );
function sp_disable_superfish() {
wp_deregister_script( 'superfish' );
wp_deregister_script( 'superfish-args' );
}
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Enable the superfish script
add_filter( 'genesis_superfish_enabled', '__return_true' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment