1

I have been struggeling with wordpres menu for a few days now.

I cant find any good information on the internet that i can understand. I use the menu that wordpress have. And i want to add new items to it text and also some links. I cant use wordpress admin GUI for this as the links and text comes from MYSQL calls.

So far i can get it to display in my menu but my problem is its alwas ends upp in the end of the menu.

Is there a way to make the menu sorted? From what i understand the function adds the item to the menu and thats why it ends up at the end. So i have to break down the hole menu and then make the menu but question is how.

Here is my code this adds a "Login" Or "Logout" link in my menu at the end. How do i move it so it will be first in the menu order?

//Add login/logout link to naviagation menu

function add_login_out_item_to_menu( $items, $args ){

    //change theme location with your them location name
    if( is_admin() ||  $args->theme_location != 'main-menu' )
        return $items; 

    $redirect = ( is_home() ) ? false : get_permalink();
    if( is_user_logged_in( ) )
        $link = '<a href="' . wp_logout_url( $redirect ) . '" title="' .  __( 'Logout' ) .'">' . __( 'Logout' ) . '</a>';
    else  $link = '<a href="' . wp_login_url( $redirect  ) . '" title="' .  __( 'Login' ) .'">' . __( 'Login' ) . '</a>';

    return $items.= '<li id="1log-in-out-link" class="menu-item menu-type-link">'. $link . '</li>';
}
add_filter( 'wp_nav_menu_items', 'add_login_out_item_to_menu', 52, 2 );
4

1 回答 1

3

如果您只想首先添加item,然后使用

return $items = '<li id="1log-in-out-link" class="menu-item menu-type-link">'. $link . '</li>' . $items;

只需$items将末尾与新菜单项连接起来,这应该首先带来新项目。

于 2013-11-14T20:28:23.417 回答