Hallo zusammen,
ich ändere gerade auf meiner HP www.stiefelzug.de das Mimbo-Design etwas um. Allerdings stehe ich nun vor einem Problem!
Am Anfang habe ich nun ein Featured Content eingefügt. Funktioniert soweit auch ganz gut! Den Top-Artikel möchte ich nicht mehr so da stehen haben...
Ich möchte ihn ganz normal aufführen unter "Letzte Einträge"!
Allerdings weiß ich nicht, wie ich den Artikel an dieser Stelle da weg bekomme....
Hier der Quelltext von der index.php:
<?php get_header(); ?>
<?php if (have_posts()) { ?>
<div id="content">
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
<?php
$postCount = 0;
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts( 'paged=$page&post_per_page=-1&cat=' . get_query_var('cat') );
while (have_posts()) { the_post();
if( $postcount == 0 ) {
//GETS LATEST OR STICKY POST
?>
<div id="lead" class="clearfloat">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php echo get_post_image (get_the_id(), '', '', '' .get_bloginfo('template_url') .'/scripts/timthumb.php?zc=1&w=260&h=230&src='); ?></a>
<div id="lead-text">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php the_title(); ?></a> </h2>
<p class="date"><?php the_time('d/n/y'); ?> • </p>
<?php the_excerpt(); ?>
</div>
</div><!--END LEAD/STICKY POST-->
<div id="more-posts">
<h3><?php _e('Recent Posts','Mimbo'); ?></h3>
<?php
}
elseif( $postcount > 0 && $postcount <= 6 ) {
//GETS NEXT FOUR EXCERPTS
?>
<div class="clearfloat recent-excerpts">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php echo get_post_image (get_the_id(), '', '', '' .get_bloginfo('template_url') .'/scripts/timthumb.php?zc=1&w=105&h=85&src='); ?></a>
<h4><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a> </h4>
<p class="date"><?php the_time('d/n/y'); ?> • </p>
<?php the_excerpt(); ?>
</div>
<?php //GETS NEXT HEADLINES
}
else {
ob_start();
echo '<li><a href="';
the_permalink();
echo '">';
the_title();
echo '</a></li>';
$links[] = ob_get_contents();
ob_end_clean();
}
$postcount ++;
}
}
else {
?>
<?php } ?>
<?php
if(count($links)): ?>
<h3><?php _e('Older Posts','Mimbo'); ?></h3>
<ul class="headlines"><?php echo join("\n", $links); ?></ul>
<?php endif; ?>
</div><!--END RECENT/OLDER POSTS-->
<div id="featured-cats">
<h3><?php _e('News','Mimbo'); ?></h3>
<?php
$display_categories = get_option('openbook_cats');
foreach ($display_categories as $category) {
$showposts = get_option('openbook_featured_posts');
query_posts("showposts=$showposts&cat=$category");
?>
<h5><a href="<?php echo get_category_link($category);?>"><?php single_cat_title(); ?>»</a></h5>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li class="clearfloat"><p class="date"><?php the_time('d/n/y'); ?> • </p><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php } ?>
</div><!--END FEATURED CATS-->
</div><!--END CONTENT-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Prof.Gønzø Gast |