5

ID 406 のカテゴリからの投稿を含む小さなサムネイル ギャラリーを作成しています。

一部の投稿は複数のカテゴリにあり、406 の子であるカテゴリ名を取得する方法がわかりません。カテゴリを$post_cat[0]->name;返しますが、406 の子を返すためにのみ必要です。

$thumbnails = get_posts('posts_per_page=10&cat=406');

foreach ($thumbnails as $thumbnail) {

   $args = array(
     'type' => 'post',
     'child_of' => 0,
     'parent' => 406,
   );
   $categories = get_categories ( $args );

   foreach ( $categories as $category) {
      $cat_name = $category->name;
      $cat_slug = $category->slug;
   }

    echo $cat_name;
    echo $cat_slug;

 }

*編集* *

$thumbnails = get_posts('posts_per_page=10&cat=406');
foreach ($thumbnails as $thumbnail) {

  $post_cat = get_the_category( $thumbnail->ID );
  echo '<li><a class="side-thumb" href="' . get_permalink( $thumbnail->ID ) . '" title="' . esc_attr( $thumbnail->post_title ) . '">';

  if ( has_post_thumbnail($thumbnail->ID)) {

   echo get_the_post_thumbnail($thumbnail->ID, 'thumbnail');
   $upload_dir = wp_upload_dir();
   $art_image = ''.$upload_dir['basedir'].'/icons/'.$post_cat[0]->slug.'.png';

   if (file_exists($art_image)) {

     echo '<p class="artist-latest"><img src="http://site.com/wp-content/uploads/icons/'.$post_cat[0]->slug.'.png" alt="'.$post_cat[0]->slug.'"/>'.$post_cat[0]->name.'</p>';

    } else{
        echo '<p class="artist-latest">'.$post_cat[0]->name.'</p>';
    }

    } else {

    }
    echo '</a></li>';
   }
4

2 に答える 2

11

だから今、私はカテゴリとその子のリストを取得しています。次に、親カテゴリが割り当てられた投稿を取得します。投稿配列を取得した後、それにループして、投稿に割り当てられたすべてのカテゴリを取得します。追加のカテゴリがある場合必要なカテゴリとその子以外は、投稿をスキップします。それ以外の場合は、やりたいことを何でもします。

$category = get_category_by_slug( 'category-name' );

$args = array(
'type'                     => 'post',
'child_of'                 => $category->term_id,
'orderby'                  => 'name',
'order'                    => 'ASC',
'hide_empty'               => FALSE,
'hierarchical'             => 1,
'taxonomy'                 => 'category',
); 
$child_categories = get_categories($args );

$category_list = array();
$category_list[] = $category->term_id;

if ( !empty ( $child_categories ) ){
    foreach ( $child_categories as $child_category ){
        $category_list[] = $child_category->term_id;
    }
}

$posts_args = array(
'posts_per_page'   => 10,
'cat'  => $category->term_id,
'post_type'        => 'post',
'post_status'      => 'publish',
'suppress_filters' => true 
);

$posts = new WP_Query ( $posts_args );
if ( $posts->have_posts() ){

  while ( $posts->have_posts() ){
    $posts->the_post(); 
    $category_array = array();
    $post_categories = get_the_category ( get_the_ID() );
    if ( !empty ( $post_categories ) ){
       foreach ( $post_categories as $post_category ) {
          $category_array[] = $post_category->term_id;
        }
    }
    //Checks if post has an additional category
    $result = array_diff( $category_array,  $category_list   ); 

    if ( empty ( $result ) ) { ?>
       <li>
         <a href="<?php the_permalink(); ?>" class="side-thumb" title="<?php the_title(); ?>"> dfdf<?php 
             if ( has_post_thumbnail() ){
                 echo get_the_post_thumbnail();
             } 
             //Put your default icon code here 
             ?>
         </a> 
        </li> <?php
     }
   }
  }
  wp_reset_postdata();

上記の答えはあなたの説明によるものですが、アーティストのカテゴリがあり、それぞれに特定の名前を持つサブカテゴリがあるように、アーティストギャラリーの場合、すべてのアーティストのリストと写真を表示したいと思います。

于 2013-10-21T19:45:34.567 に答える