i have a category named news and many subcategories inside it. What i wanna do is to get only 1 posts(newest) from each of those sub categories(including category title, post title, attachment image). Is there any suggestions friends??

link|improve this question

36% accept rate
1  
This is your 6th question on SO and you still haven't accepted any previous answer. Please do so if there were any useful answers, this will improve your karma here :) – Felipe Alsacreations Jul 17 '10 at 21:08
feedback

1 Answer

up vote 2 down vote accepted
<?php

$news_cat_ID = get_cat_ID('News'); 
$news_cats   = get_categories("parent=$news_cat_ID");
$news_query  = new WP_Query();

foreach ($news_cats as $news_cat):
?>

<h2><?php echo esc_html($news_cat->name); ?></h2>

<?php $news_query->query('posts_per_page=1&cat=' . $news_cat->term_id); ?>
<?php if ($news_query->have_posts()): $news_query->the_post(); ?>

        <div class="post">
            <?php the_title(); ?>
            <!-- do whatever you else you want that you can do in a normal loop -->
        </div>  

<?php endif; ?>

<?php endforeach; ?>
link|improve this answer
thank u THEDeadMedic. it worked, and can you help me another one. (extendign the same code) how do i show only those post who has image attachment and ordered by date – sonill Jul 18 '10 at 5:37
thanks for this, was looking for exact same thing! +1 – Tarun Jul 26 '11 at 10:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.