ThemeShaper Forums » Thematic

[closed]

Post page not displaying summary

(3 posts)
  • Started 13 years ago by gaillen
  • Latest reply from gaillen
  • This topic is resolved

Tags:

  1. gaillen
    Member

    My "Posts" page is not displaying summaries of articles but rather full content. "Categories" and "Archives" are displaying summaries properly. Can someone point me in the right direction on how to modify this in my child themes functions so that the "Posts" page also displays summaries?

    I have moved my posts page from home to "Articles".

    This is my posts page: http://cs1.uhcloud.com/~nsrubin/articles/

    Thanks for your thoughts.

    Posted 13 years ago #
  2. try adding this in your child theme's functions.php:

    function childtheme_content($content) {
    	if ( is_home () ) {
    		$content= 'excerpt';}
    	return $content;
    }
    add_filter('thematic_content', 'childtheme_content');
    Posted 13 years ago #
  3. gaillen
    Member

    Thank you Gene,

    That was the ticket, 100%.

    -Gaillen

    Posted 13 years ago #

RSS feed for this topic

Topic Closed

This topic has been closed to new replies.