IE7styles.css | archive.php | comments-popup.php | comments.php | crop.php | flere_kategorier.php | flere_nyheder.php | footer.php | frontpage.php | header.php | index.php | menu.php | page.php | posts.php | posts_content.php | right_sidebar.php | right_sidebar_single.php | single.php | single_page.php | style.css |
<div class="heading_right">

<div class="title">Flere nyheder</div>
    <ul>
    <?php 
    $flere_nyheder 
= new WP_Query('showposts=10');
    
$i_flere_nyheder 0;
    
    while (
$flere_nyheder->have_posts()) : $flere_nyheder->the_post();
    
?>
    <li>- <a title="<?php the_date();?>" href="<?php the_permalink();?>"><?php the_title();?></a></li>
    <?php $i_flere_nyheder++; ?>
    <?php endwhile; ?>
    <?php if($i_flere_nyheder == 0) echo "Ingen indlæg.";?>
    </ul>
</div>