Hello,
i want to show a link with the last comment of a category.
i have this code:
<?php
$categories = get_all_category_ids();
foreach($categories as $catid) {
query_posts("cat=$catid&showposts=1");
while (have_posts()) : the_post(); ?>
<div>
<div style="float: left; width: 400px; border-top: 2px solid #800000;"><?php the_category(', ') ?><br /><?php $category = get_the_category(); echo $category[0]->category_description ; ?></div>
<div style="float: left; width: 50px; border-top: 2px solid #800000;"><a href="<?php bloginfo('url'); ?>/category/<?php $category = get_the_category(); echo $category[0]->category_nicename ; ?>/feed" title="RSS"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/rss.gif" alt="Flux RSS" /></a></div>
<div style="float: left; width: 80px; border-top: 2px solid #800000;"><?php $category = get_the_category(); echo $category[0]->category_count; ?></div>
<div style="float: left; border-top: 2px solid #800000;"><a href="<?php the_permalink(); ?>" title="Titre"><?php the_title(); ?></a><br />le <?php the_time('j/m') ?>, par <?php the_author(', ') ?></div>
<div style="clear: both;"></div>
</div>
<?php endwhile; }?>
how to add a <div> for see the last comment of a category?
bye