ALso das <div id="leftcol"> habe ich gefunden aber da stehen nur phcodec
PHP
<div id="leftcol">
<?php
// this is where the Features module begins
query_posts('showposts=3&cat=4'); ?>
<h3><?php
// this is where the name of the Features category gets printed
wp_list_categories('include=4&title_li=&style=none'); ?></h3>
<?php while (have_posts()) : the_post(); ?>
<div class="feature"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><img src="<?php bloginfo('template_url'); ?>/images/<?php
// this is where the custom field prints images for each Feature
$values = get_post_custom_values("Image"); echo $values[0]; ?>" alt="" /></a><a href="<?php the_permalink() ?>" rel="bookmark" class="title">
<?php
// this is where title of the Feature gets printed
the_title(); ?>»</a></div>
<?php endwhile; ?>
</div><!--END LEFTCOL-->
Alles anzeigen