Hilfe hier
Also du musst es in der index.php und in der single.php einfügen undzwar reicht es vollkommen, wenn du: p75GetThumbnail
ach und bei den einstellungen gibts den punkt tumbnail options ... dort musst du dir die größe einstellen und dann die bilder auch so einspeichern ...
einfach da einfügst was ich rot markiert habe ...
jeweils wie gesagt auf der single.php und auf der index.php
falls dir noch auffäält das es in der category.php auch benötigt wird kannst du es auch da einfügen ...
is schon echt schwach das hier ein amateure wie ich sich 4 stunden befassen musste ...
<?php get_header(); ?>
<div id="content">
<div id="main">
<?php $count = 1; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="postbox" id="post-<?php the_ID(); ?>">
<div class="day-<?php the_time('d') ?>">
<span class="themonth"><?php the_time('M') ?></span>
</div>
<div class="thepost">
<a href="<?php the_permalink() ?>#comments">
<div class="postcomments">
<?php comments_number('0', '1', '%'); ?>
</div>
</a>
<h2><a href="<?php the_permalink() ?>" title="<?php the_title() ?> - Click Here to Read the Rest of This Entry"><?php the_title() ?></a></h2>
<div class="postdets">
<?php the_category(','); ?>
</div>
<div class="postthumb" style="display: <?php echo get_option('toggle_thumbnails'); ?>;">
<a href="<?php the_permalink() ?>" title="Continue Reading: <?php the_title() ?>"><img class="postimage" style="background: url(<?php $key="thumbnail"; echo [COLOR="Red"]get_post_meta[/COLOR]($post->ID, $key, true); ?>) top left no-repeat;" src="<?php bloginfo('template_url'); ?>/images/postimage.png" jg="imghover" jg:imghover="fade:false,src:'<?php bloginfo('template_url'); ?>/images/postimage.alt.png'" alt="<?php the_title() ?>" /></a>
</div>