jetzt werde ich bald bekloppt, ich bekomme es nciht mehr hin :|
demoblock
PHP
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<p>
<a href="<?php the_permalink() ?>" rel="bookmark" title=" '<?php the_title(); ?>'"><?php the_title(); ?> <?php comments_number('','(1)','(%)'); ?> </a>
</p>
<?php $postimageurl = get_post_meta($post->ID, 'vorschaubild', true);
if($postimageurl !== '') { ?>
<p>
<a href="<?php the_permalink(); ?>" rel="bookmark">
<img src="<?php bloginfo('template_url'); ?>/images/thumbs/<?php echo $postimageurl; ?>" alt="<?php the_title(); ?>" titel="<?php the_title(); ?>" width="100" height="100" /></a>
</p>
<?php } else { ?>
<p>
<a href="<?php the_permalink(); ?>" rel="bookmark">
<img src="<?php bloginfo('template_url'); ?>/images/thumbs/default.gif" alt="standart" width="100" height="100" /></a>
</p>
<?php } ?>
<?php endwhile; endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen