Currently when you go to one of my categories in my Wordpress site you see the entire post or posts and I have the amount of post displayed at 10 per page. How do I display just a portion of each post so that I can display more posts on one page? Any help will be appreciated!
open the archive.php, index.php and search.php in theme directory with notepadd++ or notepad. find: <?php the_content('Read the rest of this entry »'); ?> replace it with: <?php the_excerpt(); ?> also you can use the more tag.