如何在Wordpress中获取缩略图图像类别

时间:2019-02-24 13:44:12

标签: wordpress

我试图显示类别列表,包括标题,永久链接和缩略图。而且我使用下面的代码,但不起作用。

<ul>
<?php
$args = array(
    'child_of'  => 0,
    '<strong>orderby</strong>'    => 'íd',
);
$categories = get_categories( $args );
foreach ( $categories as $category ) { ?>
<li>
   <a href="<?php echo get_term_link($category->slug, 'category');?>">
      <?php ehco $category->name ; ?>
      (<?php echo <strong>$category->count;</strong> ?>)
   </a>
</li>
<?php } ?>
</ul>

请告诉我如何解决此问题,非常感谢!

0 个答案:

没有答案