Das müste gehen.
Es wird die Seite 2 ausgelesen und 2 Beiträge aus der 1 Kategorie.
PHP-Code:
<!-- Seite -->
<?php query_posts('page_id=2'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
<!-- Beiträge -->
<?php query_posts('cat=1&showposts=2); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_time('j. F Y') ?> <?php _e('·'); ?> <?php the_time() ?>
<?php the_content(__('...')); ?>
<?php wp_link_pages(); ?>
<?php endwhile; ?>
<?php endif; ?>