我只想将它构建到你的主题中,并将图标存储在你的主题文件夹中。
当您在前端显示它们时,只需检查图标图像,而不是显示术语:
foreach( $terms as $term ) {
if( file_exists( TEMPLATEPATH . \'images/\' . $term->slug . \'.png\' )
//show image
}
如果确实需要通过WP Admin上传,则可以连接到编辑术语页面并添加另一个表单字段:
add_action( \'my_taxonomy_edit_form_fields\', \'my_callback_function_to_show_upload\' );
如果确实使用了上述方法,则还必须更改表单的“enc类型”。