Skip to content

Instantly share code, notes, and snippets.

@nickcernis
Created November 26, 2014 13:13
Show Gist options
  • Save nickcernis/3c26a97e368f358fa20b to your computer and use it in GitHub Desktop.
Save nickcernis/3c26a97e368f358fa20b to your computer and use it in GitHub Desktop.
Add galleries to homepage posts in Mindstream
// Add galleries to posts on the homepage if they have them
add_action( 'genesis_post_content', 'sp_gallery_in_excerpt', 1 );
function sp_gallery_in_excerpt() {
if ( !is_home() && !is_front_page() )
return;
if ( get_post_gallery() )
echo get_post_gallery();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment