Created
November 26, 2014 13:13
-
-
Save nickcernis/3c26a97e368f358fa20b to your computer and use it in GitHub Desktop.
Add galleries to homepage posts in Mindstream
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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