Skip to content

Instantly share code, notes, and snippets.

@scottnix
Created September 4, 2013 03:35
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 scottnix/6432506 to your computer and use it in GitHub Desktop.
Save scottnix/6432506 to your computer and use it in GitHub Desktop.
Thematic show Excerpt on Home/Blog
// show excerpt post instead of excerpt on homepage
function childtheme_thematic_content($content) {
if ( is_front_page() || is_home() ) {
$content= 'excerpt';
}
return $content;
}
add_filter('thematic_content', 'childtheme_thematic_content');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment