Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save braddalton/6395727 to your computer and use it in GitHub Desktop.
Save braddalton/6395727 to your computer and use it in GitHub Desktop.
add_action('genesis_after_header', 'soliloquy_slider_header_home');
/**
* @author Brad Dalton - WP Sites
* @example http://wpsites.net/web-design/image-slider-home-page-only/
* @copyright 2014 WP Sites
*/
function soliloquy_slider_header_home() {
if (is_front_page() &&function_exists( 'soliloquy_slider' ) ) {
soliloquy_slider( '88' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment