Beste mensen,
Eerder ben ik begonnen aan een website http://www.black-ops2.nl
Zoals jullie zien staat er geen thumbnail voor de post. Dit hoort er wel te zijn en heb ik gewoon ingesteld zoals uitgelegd door de makers van designpile in hun documentatie.
zoals jullie http://wordpress.site5.net/designpile/ hier zien lukt het daar wel.
Zou iemand kunnen helpen ik het het niet vinden. Hier de code van index.php:
Eerder ben ik begonnen aan een website http://www.black-ops2.nl
Zoals jullie zien staat er geen thumbnail voor de post. Dit hoort er wel te zijn en heb ik gewoon ingesteld zoals uitgelegd door de makers van designpile in hun documentatie.
zoals jullie http://wordpress.site5.net/designpile/ hier zien lukt het daar wel.
Zou iemand kunnen helpen ik het het niet vinden. Hier de code van index.php:
PHP:
<?php get_header(); ?>
<!-- begin colLeft -->
<div id="colLeft">
<!-- begin colLeftInner -->
<div id="colLeftInner" class="clearfix">
<!-- archive-title -->
<?php if(is_month()) { ?>
<div id="archive-title">
Browsing articles from "<strong><?php the_time('F, Y') ?></strong>"
</div>
<?php } ?>
<?php if(is_category()) { ?>
<div id="archive-title">
Browsing articles in "<strong><?php $current_category = single_cat_title("", true); ?></strong>"
</div>
<?php } ?>
<?php if(is_tag()) { ?>
<div id="archive-title">
Browsing articles tagged with "<strong><?php wp_title('',true,''); ?></strong>"
</div>
<?php } ?>
<?php if(is_author()) { ?>
<div id="archive-title">
Browsing articles by "<strong><?php wp_title('',true,''); ?></strong>"
</div>
<?php } ?>
<!-- /archive-title -->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!-- begin post -->
<div class="blogPost">
<div class="date"><?php the_time('M') ?><br /><span><?php the_time('j') ?></span></div>
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<div class="meta">
By <span class="author"><?php the_author_link(); ?></span> // <?php the_category(', ') ?> // <?php comments_popup_link('No Comments', '1 Comment ', '% Comments'); ?>
</div>
<?php the_content(__('read more')); ?>
</div>
<!-- end post -->
<?php endwhile; ?>
<?php else : ?>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
<!-- end colLeftInner -->
<div class="navigation">
<div class="alignleft"><?php next_posts_link() ?></div>
<div class="alignright"><?php previous_posts_link() ?></div>
</div>
</div>
<!-- end colLeft -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>