ThemeShaper Forums » Thematic

[closed]

How to shorten blog posts on main index?

(2 posts)
  • Started 11 years ago by moscowabunga
  • Latest reply from helgatheviking
  • This topic is not resolved

Tags:

  1. I'm a WP noob, so sorry if this question has already been answered (I'm sure it has). I've searched and checked the sticky posts with no luck.

    My question is, how to I shorten the posts on the main index page? For example, I want each post to be 400px high for example with a "read more" link at the bottom.

    Also, what is the easiest way to attach a thumbnail image next to each post title?

    I appreciate any help! Thank you!

    Posted 11 years ago #
  2. you mean switch the home page to excerpts? yes that has been covered a lot of times

    function child_content($content){
      if(is_home()){
         $content = "excerpt";
      }
      return $content;
    }
    add_filter('thematic_content','child_content');

    just going from memory, so that might not be perfect

    Posted 11 years ago #

RSS feed for this topic

Topic Closed

This topic has been closed to new replies.