Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active June 12, 2017 03:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/5203016 to your computer and use it in GitHub Desktop.
Save braddalton/5203016 to your computer and use it in GitHub Desktop.
add_action('genesis_header', 'wpsitesdotnet_slider_header_home');
/**
* @author Brad Dalton
* @example http://wpsites.net/web-design/executing-shortcodes-in-hook-locations-using-functions/
* @copyright 2014 WP Sites
*/
function wpsitesdotnet_slider_header_home() {
if (is_home()) {
echo do_shortcode('[easingsliderlite]');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment