web-dev-qa-db-ja.com

Post_class()で親カテゴリクラスを取得する

私のサブカテゴリの1つからのいくつかの投稿のpost_class()に親カテゴリクラスを追加しようとしています。高度なテーマがあるので、サブカテゴリクラスではなくそのクラスを使用して、親カテゴリからのすべての投稿をスタイル設定する必要があります(CSSでは面倒です)。

3
rats

おそらく以下のようなものです。

function mytheme_get_post_class_parent_cats() {
    $parent_cat_classes = array();
    // Get parent categories
    $post_cats = wp_get_post_categories();
    // Loop through post categories
    foreach ( $post_cats as $post_cat ) {
        $cat_parents = get_category_parents( $post_cat , false, ',', true );
        // if there are any parent categories
        if ( $cat_parents ) {
            // create an array
            $cat_array = explode( $cat_parents, ',' );
            // First key of the array is the top-level category parent
            $parent_cat_id = $cat_array[0];
            // Get the name of the top-level parent category
            $parent_cat = get_cat_name( $parent_cat_id );
            // create the CSS class .category-parent-{categoryname}
            $parent_cat_classes[] = 'category-parent-' . $parent_cat;
        } else {
            // Otherwise, the category is a top-level cat, so use it
            $cat_name = get_cat_name( $post_cat );
            $parent_cat_classes[] = 'category-parent-' . $cat_name;
        }
    }
    // Return CSS class, or false
    return $parent_cat_classes;
}

その後、post_class()を呼び出すと、

<?php post_class( mytheme_get_post_class_parent_cats() ); ?>
3
Chip Bennett

友人が完璧な解決策を見つけたので、私はあなたとそれを共有することは公平だと思います:

function rats_class($classes){
 global $post;
 $cat=get_the_category(get_query_var('post'));
 if(is_array($cat)&&!empty($cat)){
  if($cat[0]->category_parent!=0){
   $parents=get_category_parents($cat[0]->term_id,false,'@',true);
   if(!empty($parents)){
    $parent=explode('@',$parents);
    $classes[]='category-'.$parent[0];
   }
  }
 }
 return $classes;
}
add_filter('post_class','rats_class');
0
rats