web-dev-qa-db-fra.com

Trier les messages par nom de catégorie et titre

Essayer de comprendre comment je peux publier mes articles en fonction du titre de la catégorie (a – z) et, ensuite, du titre des articles de la catégorie:

Une catégorie
- Un poste commençant par un
- Parce que je veux être la seconde sortie
- Allez, et affiche-moi déjà

CATÉGORIE B
- Un autre poste commençant par un
- Ça ne peut pas venir avec un autre titre sur B
- Je suppose que vous avez compris

Comment puis-je y arriver?

3
INT

Pour les obtenir par catégorie, vous devez parcourir la liste des catégories, puis interroger chaque catégorie:

$categories = get_categories( array ('orderby' => 'name', 'order' => 'asc' ) );

foreach ($categories as $category){

   echo "Category is: $category->name <br/>";

   $catPosts = new WP_Query( array ( 'category_name' => $category->slug, 'orderby' => 'title' ) ); 

   if ( $catPosts->have_posts() ){

       while ( $catPost->have_posts() ){
          $catPost->the_post();
          echo "<a href='the_permalink()'>the_title()</a>";
       }

       echo "<p><a href='/category/$category->slug'>More in this category</a></p>";

   }//end if



} //end foreach

wp_reset_postdata();
5
leromt

Je pense que vous voulez dire GROUP Post par catégorie/taxonomie NOT SORT.

Ici, est un code pour GROUP par category/taxonomy

  1. $terms = get_terms( 'my_cat_name' );

Ici, cat_name nom est le nom de la taxonomie. Lorsque vous l’enregistrez comme ceci: par exemple.

register_taxonomy( 'my_cat_name', array( 'custom_post_name' ), $args )
  1. Utilisez-le dans Query exemple:

    $args = array(
       'post_type'  => 'custom_post_name',
       'my_cat_name' => $term->slug,
       'posts_per_page' => $no_of_posts,
    );
    
  2. Code complet:

    $terms = get_terms( 'CUSTOM_TAXONOMY_SLUG' );
    
    if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
    
        $output .= '<ul class="category-list">';
        foreach ( $terms as $term ) {
    
            $output .= '<li class="single-cat">';
            $output .= '    <h3>' . $term->name . '</h3>';  //  Taxonomy/Category Name
    
                $args = array(
                    'post_type'     => 'POST_TYPE_SLUG',
                    'CUSTOM_TAXONOMY_SLUG' => $term->slug,
                    'posts_per_page' => -1,
                );    
    
                $the_query = new WP_Query( $args );
    
                if ( $the_query->have_posts() ) {
                    $output .= '<ul class="cat-post-list">';
                    while ( $the_query->have_posts() ) {
                        $the_query->the_post();
                        $output .='     <li class="cat-single-post">';
                        $output .='         <h4><a href="'.get_the_permalink().'">' .get_the_title(). '</a></h4>';
                        $output .='     </li><!-- .cat-single-post -->';
                    }
                    $output .= '</ul><!-- .cat-post-list -->';
                } 
                wp_reset_postdata();
            $output .= '</li><!-- .single-cat-item -->';
        }
        $output .= '</ul><!-- .category-list -->';
    }
    
1
maheshwaghmare

Développer le travail de Maheshwaghmare;

<? 
$terms = get_terms( 'CUSTOM_TAXONOMY' );
if ( ! empty( $terms ) ){ ?>

<div class="POST_TYPE_PLURAL">

<?  foreach ( $terms as $term ) {
//print_r($term) // DEBUG;
$term_slug = $term->slug;
$term_name = $term->name;
$term_description = $term->description;
?>

    <div class="POST_TYPE_CATEGORY <?=$term_slug; ?>">

      <h1 class="section-head"> <?=$term_name; ?> </h1>
      <p><?=$term_description; ?> </p>

       <?  
        $args = array(
          'post_type'     => 'CUSTOM_POST_TYPE',
          'tax_query' => array(
            array(
              'taxonomy' => 'CUSTOM_TAXONOMY',
              'field'    => 'slug',
              'terms'    => $term_slug,
            ),
          ),
           'posts_per_page' => -1,
         );    

         $the_query = new WP_Query( $args );

           if ( $the_query->have_posts() ) : ?>
              <? while ( $the_query->have_posts() ) : $the_query->the_post(); ?>

               <div class="POST_TYPE_SINGLE">
                <h3> <? the_title(); ?> </h3>
                <? // MORE TEMPLATING CODE ?>
               </div>

             <?  endwhile;
           endif;
           wp_reset_postdata(); ?>
     </div>
 <?  } // foreach
 } //if terms
 ?>
0
Chris Pink

Vous pouvez utiliser le paramètre orderby pour une nouvelle instance wp_query:

$query = new WP_Query( array ( 'orderby' => 'title', 'order' => 'DESC' ) );

Soo pour chaque catégorie utilise une instance séparée.

Plus d'informations ici: http://codex.wordpress.org/Class_Reference/WP_Query

0
user564285