我用过这个插件https://wordpress.org/plugins/categories-images 多次将图像添加到类别中,效果非常好。希望这能满足你的需要!
当插件在您的网站上被激活,并且您已经为您的类别添加了图像时,请在类别中使用以下内容。php输出类别图像:
<ul>
<?php foreach (get_categories() as $cat) : ?>
<li>
<?php if (function_exists(\'z_taxonomy_image_url\')): ?>
<img src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" />
<?php else: ?>
<img src="<?php stylesheet_directory_url(); ?>/images/placeholder.jpg" />
<?php endif; ?>
<a href="<?php echo get_category_link($cat->term_id); ?>"><?php echo $cat->cat_name; ?></a>
</li>
<?php endforeach; ?>
</ul>
在上面的示例中,如果没有可用的类别图像,您可以选择在/wp-content/themes/yourthemename/images/placeholder中加载占位符图像。jpg公司
stylesheet\\u directory\\u url()将返回“/wp content/themes/yourthemename”