Na gut, schaun mer mal. :-)
<?php get_header(); ?>
<div id="latest">
<h2>Die beiden aktuellsten Artikel stehen immer ganz oben</h2>
<?php $my_query = new WP_Query('[COLOR="Red"]cat=-460&[/COLOR]showposts=2'); while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div id="postinfo"><h3><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<p class="info">Artikel wurde am <?php the_time('d.m.Y') ?> um <?php the_time(' H:i') ?> Uhr verfasst.</p></div>
<div class="content">
<?php the_content_rss('', TRUE, '', 90);?><a class="readmore" href="<?php the_permalink(); ?>" title="weiterlesen... '<?php the_title(); ?>'">weiterlesen...</a>
</div> <!-- End of "content" div -->
<p class="meta"><a href="<?php the_permalink(); ?>#comments"><?php comments_number('noch kein Kommentar!','1 Kommentar','% Kommentare'); ?></a> | Diesen Artikel haben sich <strong><?php if(function_exists('the_views')) { the_views(); } ?></strong> Leser angeschaut und dadurch wurde eine <?php akpc_the_popularity(); ?> erreicht.</p>
<?php endwhile; ?>
<div id="recententries">
<h2>letzte Artikel aus meinem Blog</h2>
<ul class="recent">
<?php add_filter('post_limits', 'my_post_limit'); ?>
<?php
global $myOffset;
$myOffset = 1;
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query('[COLOR="Red"]cat=-460&[/COLOR]offset='.$myOffset.'&paged='.$paged);
?>
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
[B]<?php $the_query = new WP_Query('cat=460');
while ($the_query->have_posts()) : $the_query->the_post();
$do_not_duplicate = $post->ID; ?>[/B]
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> <small><?php the_time('d.m.Y'); ?></small><br /> <?php the_content_rss('', TRUE, '', 28); ?></li>
<?php endwhile; ?>
<div class="navigation">
<div class="right"><?php previous_posts_link('neuer » ') ?></div>
<div class="left"><?php next_posts_link('« älter') ?></div>
</div>
<?php $wp_query = null; $wp_query = $temp;?>
<?php remove_filter('post_limits', 'my_post_limit'); ?>
</ul>
</div> <!-- End of "recententries" div -->
</div> <!--End of "latest" div -->
<div id="authinfo">
<h2 style="margin-bottom: 10px;">Willkommen zu Hause!</h2>
<div>
<b class="spiffy"> <!-- Top Rounded Boarder //-->
<b class="spiffy1"><b></b></b>
<b class="spiffy2"><b></b></b>
<b class="spiffy3"></b>
<b class="spiffy4"></b>
<b class="spiffy5"></b></b>
<div class="spiffyfg" style="height: 100%; min-height: 215px;">
<div class="profilepic" ><img class="thepic_large" src="<?php bloginfo('template_url'); ?>/profilepic.jpg" alt="" /> </div>
<?php include(TEMPLATEPATH . "/authinfo.php"); ?>
</div>
<b class="spiffy">
<b class="spiffy5"></b>
<b class="spiffy4"></b>
<b class="spiffy3"></b>
<b class="spiffy2"><b></b></b>
<b class="spiffy1"><b></b></b></b> <!-- Bottom rounded boarder //-->
</div>
<div class="clear"></div>
<div class="about">
<h2>was ist das hier ?</h2>
<p>Herzlich Willkommen auf meinem Blog, auf dem Sie Artikel zu allen möglichen Themen finden werden. Ich habe keine spezielle Richtung und bezeichne mich deshalb als "Allround Blogger", der mit WordPress eine neue Liebe gefunden hat.</p>
</div> <!-- End of "about" div -->
<?php include(TEMPLATEPATH .'/125ads.php'); ?>
<h2 style="margin-bottom: 10px;">schnell und kurz notiert</h2>
<ul class="sidebar">
<ul>
<?php $the_query = new WP_Query('category_name=asides&showposts=4&orderby=post_date&order=desc');
while ($the_query->have_posts()) : $the_query->the_post();
$do_not_duplicate = $post->ID; ?>
<li><?php echo strip_tags(get_the_content(), '<a>'); ?> <a href="<?php the_permalink(); ?>"
rel="bookmark" title="Permanenter Link zu <?php the_title(); ?>">#</a></li>
<?php endwhile; ?>
</ul>
</ul>
</div> <!-- End of "authinfo" div -->
<div class="cear"></div>
</div> <!-- End of "main" div -->
<?php get_footer(); ?>
Alles anzeigen
Ich hoffe die beiden Stellen (latest + recent) waren es. Wenn nicht, sag einfach bescheid. ;)