Sodala, probiers mal so ;) So sieht die Abfrage aus, die ich benutze und bei mir funktioniert diese auch :)
Erster Artikel (Dahinplatzieren wo dieser ausgegeben soll)
PHP
<?php $temp_query = $wp_query; query_posts('showposts=1&orderby=ID&order=DESC'); ?>
<?php while (have_posts()) { the_post(); ?>
<div id="post-<?php the_ID(); ?>">
> <?php the_time('d/m/Y') ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a>
</h2>
<?php the_content(); ?>
<?php comments_popup_link(__('0 Kommentare', 'kubrick'), __('1 Kommentar', 'kubrick'), __('% Kommentare', 'kubrick')); ?>
</div>
<?php } $wp_query = $temp_query; ?>
Alles anzeigen
Die nächsten 4 Artikel (wieder dahinplatzieren wo sie erscheinen sollen).
PHP
<?php $temp_query = $wp_query; query_posts('showposts=4&offset=1&orderby=ID&order=DESC'); ?>
<?php while (have_posts()) { the_post(); ?>
<div id="post-<?php the_ID(); ?>">
<?php the_time('d/m/Y') ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a>
</h2>
<?php the_excerpt(); ?>
<?php comments_popup_link(__('0 Kommentare', 'kubrick'), __('1 Kommentar', 'kubrick'), __('% Kommentare', 'kubrick')); ?>
</div>
<?php } $wp_query = $temp_query; ?>
Alles anzeigen
Wenn du diesen Code in der Index.php datei verwenden willst, siehts so aus:
PHP
<?php get_header(); ?>
Hier die Abfrage(n) reinpacken.
<?php get_sidebar(); ?>
<?php get_footer();?>
Wie ich grad sehe, wollt ihr noch dazu immer ein Bild auslesen?