2010-07-16 11 views
5

में प्रत्येक श्रेणी से मुझे केवल 1 पोस्ट कैसे प्राप्त होता है मेरे पास समाचार और कई उपश्रेणी नामक एक श्रेणी है। मैं जो करना चाहता हूं वह उन सभी श्रेणियों में से केवल 1 पद (नवीनतम) प्राप्त करना है (श्रेणी शीर्षक, पोस्ट शीर्षक, अनुलग्नक छवि सहित)। क्या कोई सुझाव दोस्त हैं ??वर्डप्रेस

+3

यह SO पर आपका 6 वां प्रश्न है और आपने अभी तक कोई पिछला उत्तर स्वीकार नहीं किया है। अगर ऐसा कोई उपयोगी उत्तर था तो कृपया ऐसा करें, इससे आपका कर्म बेहतर होगा :) – FelipeAls

उत्तर

11
<?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) : 
    $news_query->query(array(
     'cat'     => $news_cat->term_id, 
     'posts_per_page'  => 1, 
     'no_found_rows'  => true, 
     'ignore_sticky_posts' => true, 
    )); 

    ?> 

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

    <?php while ($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 endwhile ?> 

<?php endforeach ?> 
+0

धन्यवाद THEDeadMedic। यह काम किया, और आप मेरी मदद कर सकते हैं एक और। (उसी कोड को विस्तारित करें) मैं केवल उन पदों को कैसे दिखा सकता हूं जिनके पास छवि संलग्नक है और – sonill

+0

द्वारा आदेश दिया गया है, यह वही चीज़ ढूंढ रहा था! +1 – Tarun

+0

मुझे एक टन बचाया, धन्यवाद @TheDeadMedic –

0

के बाद कुछ ही घंटों और विश्व भर में सभी हमारे साथियों के लिए धन्यवाद, मैं मुख्य क्वेरी को संशोधित करने के तो हम भी टेम्पलेट्स जाने के लिए और नए प्रश्नों और छोरों उत्पन्न करने के लिए की जरूरत नहीं है कर लिया है ..

// My function to modify the main query object 
function grouped_by_taxonomy_main_query($query) { 

    if ($query->is_home() && $query->is_main_query()) { // Run only on the homepage 

     $post_ids = array(); 

     $terms = get_terms('formato'); 

     foreach ($terms as $term) { 
      $post_ids = array_merge($post_ids, get_posts(array( 
       'posts_per_page' => 4, // as you wish... 
       'post_type' => 'video', // If needed... Default is posts 
       'fields' => 'ids', // we only want the ids to use later in 'post__in' 
       'tax_query' => array(array('taxonomy' => $term->taxonomy, 'field' => 'term_id', 'terms' => $term->term_id,)))) // getting posts in the current term 
      ); 
     } 

     $query->query_vars['post_type'] = 'video'; // Again, if needed... Default is posts 
     $query->query_vars['posts_per_page'] = 16; // If needed... 
     $query->query_vars['post__in'] = $post_ids; // Filtering with the post ids we've obtained above 
     $query->query_vars['orderby'] = 'post__in'; // Here we keep the order we generated in the terms loop 
     $query->query_vars['ignore_sticky_posts'] = 1; // If you dont want your sticky posts to change the order 

    } 
} 

// Hook my above function to the pre_get_posts action 
add_action('pre_get_posts', 'grouped_by_taxonomy_main_query');