web-dev-qa-db-ja.com

分類別にカスタム投稿タイプですべての投稿を一覧表示する

特定のカスタム投稿タイプのすべての投稿を一覧表示し、それらに添付されているカスタム分類法用語で並べ替える方法はありますか。

例えば;

分類学用語#1
投稿の種類
投稿の種類
投稿の種類

分類用語#2
投稿の種類
投稿の種類

任意の助けは最も感謝されるでしょう。

ありがとう。

22
Dean Elliott

これを試して

$custom_terms = get_terms('custom_taxonomy');

foreach($custom_terms as $custom_term) {
    wp_reset_query();
    $args = array('post_type' => 'custom_post_type',
        'tax_query' => array(
            array(
                'taxonomy' => 'custom_taxonomy',
                'field' => 'slug',
                'terms' => $custom_term->slug,
            ),
        ),
     );

     $loop = new WP_Query($args);
     if($loop->have_posts()) {
        echo '<h2>'.$custom_term->name.'</h2>';

        while($loop->have_posts()) : $loop->the_post();
            echo '<a href="'.get_permalink().'">'.get_the_title().'</a><br>';
        endwhile;
     }
}

分類のすべての用語を取得し、それらをループ処理して、その用語に属する各投稿へのタイトルリンクを開始します。分類用語を並べ替える必要がある場合は、プラグインを使用して簡単に行うことができます。 分類の並べ替え 、と思います。 しかし このプラグインはあなたのテーブルのactivation に別の列を追加(!)しています ! - = /!

47
GhostToast

特に洗練されたソリューションではありませんが、特定の用語に対してそれぞれ複数のクエリを作成して出力することができます。うまくいけば、誰かが自動的に用語を引き出して出力/ソートを変更するより良い方法を思いつくことができます。しかし、これでうまくいくでしょう。

<?php

//First Query for Posts matching term1
$args = array(
    'tax_query' => array(
        array(
            'taxonomy' => 'taxonomy_1',
            'field' => 'slug',
            'terms' => array( 'term1' )
        ),
    ),
    'post_type' => 'my-post-type'
);
$query = new WP_Query( $args );

if ( have_posts() ) {

    $term = $query->queried_object;

    echo 'All posts found in ' . $term->name;

    while ( have_posts() ) : the_post();
        //Output what you want
        the_title();
        the_content();
    endwhile;
}

//RESET YOUR QUERY VARS
wp_reset_query();

//Second Query for term2
$args = array(
    'tax_query' => array(
        array(
            'taxonomy' => 'taxonomy_1',
            'field' => 'slug',
            'terms' => array( 'term2' )
        ),
    ),
    'post_type' => 'my-post-type'
);
$query = new WP_Query( $args );

if ( have_posts() ) {

    $term = $query->queried_object;

    echo 'All posts found in ' . $term->name;

    while ( have_posts() ) : the_post();
        //Output what you want
        the_title();
        the_content();
    endwhile;
}
1
theMojoWill

良いですね! GhostOneの解決策は私が探していたものでした。私の状況では、カスタム投稿タイプは「minining_accidents」であり、これに関連するカスタム分類法は複数の用語が含まれる「事故タイプ」でした。私のアイデアは、このカスタム分類法の条件の下で投稿のリストを表示するためのカスタムウィジェットを作成することでした。私の試運転でそれは私が欲しかったものを手に入れました。残りは急増した。これが私のコードです:

function fn_get_list_of_mining_accident_types()
{
    $custom_taxonomy='accident-types';  
    $custom_terms = get_terms($custom_taxonomy);    
    $str_return='<ul>';
    foreach($custom_terms as $custom_term) 
    {
        wp_reset_query();
        $args = array(
            'post_type' => 'minining_accidents',
            'tax_query' => array(               
                array(
                    'taxonomy' => $custom_taxonomy,
                    'field' => 'slug',
                    'terms' => $custom_term->slug,
                ),
            ),
        );  

        $loop = new WP_Query($args);

        $term_name=$custom_term->name;
        $term_slug=$custom_term->slug;
        $term_link=get_term_link($term_slug, $custom_taxonomy);

        $str_return.='<li><a href="'.$term_link.'">'.$term_name.'</a>';

        if($loop->have_posts()) 
        {
            $str_return.='<ol>';

            while($loop->have_posts()) : $loop->the_post();
                $str_return.='<li><a href="'.get_permalink().'">'.get_the_title().'</a></li> ';
            endwhile;

            $str_return.='</ol>';           
         }
         $str_return.='</li>';
    }
    $str_return.='</ul>';
    return $str_return;
}

はい!コードをさらに改善するためのオプションが常にあります。

0
Niraj Kumar