当前位置:首页-WordPress文章-WordPress-正文

WordPress向菜单中添加分类缩略图

同样是在开发吃货主题Chihuo,导航菜单中的二级菜单需要显示省份的小地图,也就是分类菜单中显示自定义的字段,我们可通过以下代码来实现这个功能。

  1. //向菜单中添加分类自定义值
  2. function be_header_menu_desc( $item_output$item$depth$args ) {
  3.     if( 'header-menu' == $args->theme_location && get_option('thumb-'.$item->object_id) )
  4.         $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 );
  5.     return $item_output;
  6. }
  7. add_filter( 'walker_nav_menu_start_el', 'be_header_menu_desc', 10, 4 );

将以上代码添加到主题 functions.php 函数文件中。

分类中设置自定义字段请查看:WordPress 为分类添加自定义值

本文原创,作者:萨龙龙,其版权均为萨龙网络所有。
如需转载,请注明出处:https://salongweb.com/wordpress-menu-category-thumb.html