how to insert shortcode into wordpress menu

前端 未结 3 1426
旧巷少年郎
旧巷少年郎 2021-02-04 13:36

I have made a menu item with this code. The menu item shows up but the shortcode output is not there. Is there something I can add or a different method that will do this. I hav

3条回答
  •  南旧
    南旧 (楼主)
    2021-02-04 13:55

    Enable description on the menu page, paste to the description textarea of the link your shortcode, in functions.php add next code:

    add_filter('walker_nav_menu_start_el', function($item_output, $item) {
        if (!is_object($item) || !isset($item->object)) {
            return $item_output;
        }
    
        if ($item->ID === 829) {
            $item_output = do_shortcode($item->description);
        }
    
        return $item_output;
    }, 20, 2);
    

提交回复
热议问题