Beste Bouke,
Volgens mij kan je dit instellen bij Settings -> Reading settings
Beste Choconut,
Ik kan natuurlijk een eigen voorpagina maken, zoals ik al eerder heb geprobeerd, alleen ik kan niet in de code ervoor zorgen dat alleen het meest recente artikel wordt getoond. Hieronder mijn index-pagina:
<?php get_header(); ?>
<?php include (TEMPLATEPATH . '/uitgelicht.php'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="fullbox" id="post-<?php the_ID(); ?>">
<div class="fullbox_header"></div>
<div class="fullbox_content">
<div class="breadcrumb"><?php the_category(', ') ?></div>
<h1><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<div class="post_info">
<div class="post_info_left"><?php echo __('Posted on', 'techified').' '.get_the_time(__('F j, Y', 'techified')); ?> <?php echo the_author_posts_link(); ?></div>
<div class="post_info_edit"><?php edit_post_link(__('Edit this entry', 'techified'),'','.'); ?></div>
<div class="post_info_right">
<?php comments_popup_link(__('No Responses', 'techified'), __('One Response', 'techified'), __('% Responses', 'techified'), 'post_comment'); ?>
</div>
</div>
<div class="post_content">
<?php the_content(__('READ THE FULL ARTICLE >>', 'techified')); ?>
</div>
</div>
<div class="fullbox_footer"></div>
</div>
<?php endwhile; ?>
<div id="post-navigator">
<?php if (function_exists('wp_pagenavi')) : ?>
<?php wp_pagenavi(); ?>
<?php else : ?>
<div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'techified')); ?></div>
<div class="alignleft"><?php next_posts_link(__('« Older Entries', 'techified')); ?></div>
<?php endif; ?>
</div>
<?php else: ?>
<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Misschien bij het stukje “<?php while (have_posts()) : the_post(); ?>” moet ik ergens tussenzetten “limit=1&show_post_count=0” ofso?
Groeten!
Bouke