Task: I want to show the recent posts of 3 specific categories on a single page (ID = 21).
I realised this creating a second loop in functions.php
function thematic_second_loop() {
if (is_page('21')) {
query_posts("cat=5&showposts=1)");
thematic_index_loop();
query_posts("cat=6&showposts=1");
thematic_index_loop();
query_posts("cat=7&showposts=1");
thematic_index_loop();
} else {
return;
}
}
add_action('thematic_abovepagebottom', 'thematic_second_loop' );
The problem ist, that this code is showing me just the simple excerpt (without images, links, etc.).
What I need is the teaser - the text before the more-tag.
Thanks for helping! :-)
David