WordPress特色图片SubCategory在类别页面

时间:2015-05-26 08:28:46

标签: php jquery css wordpress

我正在使用特色图片的插件添加到每个类别,我想在category.php中向该父级显示所有子类别和缩略图。 每个子类别都有一个唯一的缩略图。我该怎么做?

这是我的代码:

$thiscat =  get_query_var('cat'); // The id of the current category
       $catobject = get_category($thiscat,false); // Get the Category object by the id of current category
    $parentcat = $catobject->category_parent; // the id of the parent category

    if($parentcat == '0'){
    ?>
        <div class="categories">
            <?php 
                wp_list_categories( array( 'child_of'=> $thiscat, 'taxonomy'=>'category' ) ); 
                cfi_featured_image( array( 'size' => 'thumbnail', 'title' => 'This is a test...', 'class' => 'my-image', 'alt' => 'My image' ) );   
            ?>
        </div>
    <?php   
    }

我在li中获得了父级的所有子类别,只有一个缩略图我错了,请告诉我。

我希望每个子类别都有自己的缩略图,其中包含div中的标题和描述。

0 个答案:

没有答案