Wordpress Menu Code Help Plz

Out of context: Reply #3

  • Started
  • Last post
  • 6 Responses
  • sem0

    I just put

    /*************************** Register the nav menu in the header */
    register_nav_menus( array(
    'primary-menu' => __( 'Header Navigation', 'primary-menu' ),
    'footer-menu' => __( 'Footer Menu', 'footer-menu' ),
    ) );

    add_filter('walker_nav_menu_star... 'description_in_nav_el', 10, 4);
    function description_in_nav_el($item_outp... $item, $depth, $args)
    {
    return preg_replace('/(<a.*?>[^<]*?)</', '$1' . "<span style="color:# [999999]">{$item->attr_title}</span><", $item_output);
    }

    In the functions.php an it crashed my site? ha. Had to replace the php via FTP to fix it...any ideas?

View thread