我已经使用了几个插件,这可能会有所帮助。参观https://wordpress.org/plugins/wpcustom-category-image/下载插件,上传到你网站上的插件目录,然后激活它。转到类别部分,您将看到图像上载部分。
要在前端显示数据,请使用插件提供的选项或使用以下代码:
$parent_Category=2;
$child_categories = get_terms( \'category\', \'orderby=count&hide_empty=0&parent=\'.$parent_category);
foreach($child_categories as $cat){
$cats_id=$cat->term_id;
$attachment_id = get_option(\'categoryimage_\'.$cats_id);
$src = wp_get_attachment_image_src( $attachment_id , \'thumbnail\' , false ); ?><img src="<?php echo $src[0];?>" /><?php }?>
希望有帮助