如何在前端显示wordpress类别图像

时间:2015-10-22 10:39:46

标签: wordpress

我希望这张图片显示在我的前端。

**enter image description here**

请帮助我。 感谢

1 个答案:

答案 0 :(得分:0)

试试这段代码:

<?php

$ categories = get_the_category(); foreach($ category as $ category){     echo'http://example.com/images/'。 intval($ category-&gt; term_id)。 '.jpg')。 '“alt =”'。 esc_attr($ category-&gt; name)。 '“/&gt;'; }