Skip to content

Instantly share code, notes, and snippets.

@Pross
Created June 26, 2014 17:42
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 Pross/87b066f0493ce10cd77c to your computer and use it in GitHub Desktop.
Save Pross/87b066f0493ce10cd77c to your computer and use it in GitHub Desktop.
<?php
add_filter( 'the_excerpt', 'maybe_get_the_content' );
function maybe_get_the_content( $content ) {
global $wp_query;
if( $wp_query->is_home )
return get_the_content();
else
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment