Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Created July 19, 2017 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeyarce/218267246093754032658b0b830e7497 to your computer and use it in GitHub Desktop.
Save mikeyarce/218267246093754032658b0b830e7497 to your computer and use it in GitHub Desktop.
Add Slider to Storefront Content Top
<?php
add_action( 'storefront_content_top', 'marce_custom_slider_storefront' );
function marce_custom_slider_storefront() {
if ( is_front_page() ) {
echo do_shortcode("[metaslider id=586]");
}
else {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment