WordPress向菜单中添加分类缩略图
同样是在开发吃货主题Chihuo,导航菜单中的二级菜单需要显示省份的小地图,也就是分类菜单中显示自定义的字段,我们可通过以下代码来实现这个功能。
- //向菜单中添加分类自定义值
- function be_header_menu_desc( $item_output, $item, $depth, $args ) {
- if( 'header-menu' == $args->theme_location && get_option('thumb-'.$item->object_id) )
- $item_output = str_replace( $args->link_before . '</a>', '<img src="'.get_option('thumb-'.$item->object_id).'" alt="'.$item->title.'">'.$args->link_before.'</a>', $item_output );
- return $item_output;
- }
- add_filter( 'walker_nav_menu_start_el', 'be_header_menu_desc', 10, 4 );
将以上代码添加到主题 functions.php 函数文件中。
分类中设置自定义字段请查看:WordPress 为分类添加自定义值