So Problem gelöst:
PHP
<?php if(is_home() and !is_paged()) { ?>
<?php do_action('above_feature'); ?>
<?php $my_query = new WP_Query(array('meta_key'=>'_featured','meta_value'=>'TRUE','showposts'=>1,'caller_get_posts'=>1)); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); $ignore[] = $post->ID; $do_not_duplicate = $post->ID; ?>
<div id="feature" class="clearfix">
<h3 class="title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php the_content('keep reading →'); ?>
<p><?php the_time('j. F Y') ?> • <?php comments_popup_link('Keine Kommentare', '1 Kommentar', '% Kommentare'); ?> • <a href="<?php the_permalink(); ?>">weiter lesen »</a></p>
</div><!--end #feature-->
<?php endwhile; //do not delete ?>
<?php } ?>
Alles anzeigen