2010-07-16 22 views
5

tengo una categoría llamada noticias y muchas subcategorías dentro de ella. Lo que quiero hacer es obtener solo 1 publicaciones (las más recientes) de cada una de esas subcategorías (incluyendo título de categoría, título de publicación, imagen adjunta). ¿Hay alguna sugerencia amigos?cómo obtengo solo 1 publicación de cada categoría en wordpress

+3

Esta es su 6ta pregunta sobre SO y todavía no ha aceptado ninguna respuesta anterior. Por favor hazlo si hubiera alguna respuesta útil, esto mejorará tu karma aquí :) – FelipeAls

Respuesta

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

gracias THEDeadMedic. funcionó, y puedes ayudarme a otro. (extienda el mismo código) cómo se muestran solo los mensajes que tienen imágenes adjuntas y ordenados por fecha – sonill

+0

gracias por esto, estaba buscando exactamente lo mismo! +1 – Tarun

+0

Me ahorró un montón de tiempo, gracias @TheDeadMedic –

0

Después de unas horas y gracias a nuestros compañeros de todo el mundo, que han sido capaces de modificar la consulta principal, así que ni siquiera necesitamos ir las plantillas y crear nuevas consultas y bucles ..

// 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'); 
Cuestiones relacionadas