ThemeShaper Forums » Thematic

Post page not displaying summary

(3 posts)
  • Started 1 year 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 1 year ago #
  2. em hr
    Moderator

    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 1 year ago #
  3. gaillen
    Member

    Thank you Gene,

    That was the ticket, 100%.

    -Gaillen

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.