Hi there,
Last week I published http://www.sannevankerkhof.nl. As you can see, the pages are build up with posts with different categories. (You can see it par example on the page 'Dagboek').
What i now want is to just show the summaries of the posts on pages like this. The problem is that when I set this in the read-settings in my WP-dashboard it doesn't work. Most likely because I don't use the default blogpage.
Is there somebody who can help me? Would be wonderfull! :D
Lindekh
Those settings refer to your RSS feed - not your site display. You would need to edit the relevant template files in your theme theme and replace <?php the_content();?> with <?php the_excerpt();?>
Thanks for you answer! It's right that I just see the summaries when I make this change. But then there is another problem, because you can't click for [read more] or on the title of the post. I want to see the summaries, but it has to be possible to click so that you can be on the full post.
Do you (or anybody else) know how to make that?
Replace <?php the_excerpt();?> with <?php the_content();?> and use the more tag.