Wordpress教程 2023年04月5日
0 收藏 0 点赞 1,116 浏览 2195 个字

先注册菜单位置,这里我自定义:flmenu

// 注册菜单位置
if (function_exists('register_nav_menus')) {
    register_nav_menus(array(
        'flmenu' => __('分类侧边栏菜单'),
    ));
}

class MyWalker extends Walker_Nav_Menu {
    function start_lvl(&$output, $depth = 0, $args = array()) {
        $indent = str_repeat("\t", $depth);
        $sub_menu_class = '';
        switch ($depth) {
            case 0:
                $sub_menu_class .= 'aa'; //根据深度自定每级的class类名
                break;
            case 1:
                $sub_menu_class .= 'bb'; //根据深度自定每级的class类名
                break;
            case 2:
                $sub_menu_class .= 'cc'; //根据深度自定每级的class类名
                break;
            // Add more cases for deeper levels as needed
        }
        $output .= "\n$indent<ul class=\"$sub_menu_class\">\n";
    }

    function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0) {
        $indent = ($depth) ? str_repeat("\t", $depth) : '';
        $class_names = $value = '';
        $classes = empty($item->classes) ? array() : (array) $item->classes;

        // 添加菜单项的深度类名
        if ($depth > 0) {
            $depth_class = 'depth-' . ($depth + 1);
            $classes[] = $depth_class;
            switch ($depth) {
                case 1:
                    $classes[] = 'aa' . ($depth + 1); //根据深度自定每级的class类名
                    break;
                case 2:
                    $classes[] = 'bb' . ($depth + 1); //根据深度自定每级的class类名
                    break;
                case 3:
                    $classes[] = 'cc' . ($depth + 1); //根据深度自定每级的class类名
                    break;
                // Add more cases for deeper levels as needed
            }
        }
        
        $class_names = join(' ', apply_filters('nav_menu_css_class', array_filter($classes), $item, $args));
        $class_names = $class_names ? ' class="' . esc_attr($class_names) . '"' : '';
        $id = apply_filters('nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args);
        $id = $id ? ' id="' . esc_attr($id) . '"' : '';
        $output .= $indent . '<li' . $id . $value . $class_names . '>';
        $attributes = !empty($item->attr_title) ? ' title="' . esc_attr($item->attr_title) . '"' : '';
        $attributes .= !empty($item->target) ? ' target="' . esc_attr($item->target) . '"' : '';
        $attributes .= !empty($item->xfn) ? ' rel="' . esc_attr($item->xfn) . '"' : '';
        $attributes .= !empty($item->url) ? ' href="' . esc_attr($item->url) . '" rel="external nofollow" ' : '';
        $item_output = $args->before;
        $item_output .= '<a' . $attributes . '>';
        $item_output .= $args->link_before . apply_filters('the_title', $item->title, $item->ID) . $args->link_after;
        $item_output .= '</a>';
        $item_output .= $args->after;
        $output .= apply_filters('walker_nav_menu_start_el', $item_output, $item, $depth, $args);
    }

    function end_lvl(&$output, $depth = 0, $args = array()) {
        $indent = str_repeat("\t", $depth);
        $output .= "$indent</ul>\n";
    }
}

 

前台调用

// 输出菜单
wp_nav_menu(array(
    'theme_location' => 'flmenu',
   'menu_class' => 'my-custom-class',
    'container_class' => 'my-menu-container',
    'walker' => new MyWalker()
));

 

微信扫一扫

支付宝扫一扫

版权: 转载请注明出处:https://www.mizhanw.com/blog/2061.html

相关推荐
WordPress标签按拼音字母层级排序教程
此教程实现标签按拼音字母(A、B、C 等字母)层级排序,并在页面上添加一个侧边竖向字母导航 <?php /* Template Nam…
日期:2024-11-07 点赞:0 阅读:33
wordpress网站编辑器启隐藏的编辑器功能
如果开启WordPress隐藏的编辑器功能就够你用了,何必安装插件呢。 如何开启隐藏的编辑器功能 WordPress默认不支持TinyMCE…
日期:2024-10-29 点赞:0 阅读:45
在WooCommerce中添加“立即购买”按钮直接跳转到结算页面
add_action( 'woocommerce_after_add_to_cart_button', 'add_content_after…
日期:2024-10-19 点赞:0 阅读:65
实现 WordPress 自动更新所有文章的发布日期为当天的日期
//二开自动更新文章日期为当天发布。 //设置宝塔面板中的定时任务,通过访问带有?update_posts=run的链接触发文章更新.如:c…
日期:2024-09-22 点赞:0 阅读:90
WooCommerce订单列表显示购买产品
// 为 Legacy CPT-based 订单添加自定义列 add_filter('manage_edit-shop_order_colu…
日期:2024-09-20 点赞:0 阅读:180
WooCommerce Order 类的所有Get方法,以面向对象的方法获取订单数据
在开发WooCommerce插件或者与第三方系统交互时,我们需要获取 WooCommerce 订单的数据,WooCommerce的 WC_O…
日期:2024-09-20 点赞:0 阅读:186
发表评论
暂无评论

还没有评论呢,快来抢沙发~