doujiang1832 2017-08-15 17:23
浏览 73

自定义分类法在类别页面上自定义帖子类型

I need display the custom taxonomy thumnbail and name on category page. I have this code :

<h1><?php single_cat_title(); ?></h1>
    <?php

    $taxonomy = 'kategorie_goralskie';
    $terms = get_terms($taxonomy, array('parent' => 0, 'orderby' => 
    'meta_value', 'order' => 'DESC') ); // Get all top level terms of a 
    taxonomy

    if ( $terms && !is_wp_error( $terms ) ) :
   ?>

   <?php if ( have_posts() ) : ?>
   <?php while ( have_posts() ) : the_post(); ?>
    <div class="col-md-3">

        <a href="<?php the_permalink(); ?>"><?php the_title();?></a>
    </div>
   <?php endwhile; ?>
    <?php endif; ?>

It shows only name of child (its ok) I must show thumnail too. How i can do it ? I tried in many ways enter image description here

In front-page.php everything is ok, i see taxonomy parent - just look : enter image description here

  • 写回答

1条回答 默认 最新

  • dongsou8980 2017-08-15 17:42
    关注

    You need to call the_post_thumbnail function somewhere in your loop to display thumbnail. you can pass the size of the thumbnail you whant in function parameter.

    See the detail of this function here : https://developer.wordpress.org/reference/functions/the_post_thumbnail/

    评论

报告相同问题?

悬赏问题

  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?