How to Add a Login/Logout Item to the Menu in a WP Astra Theme

Here is a quick and easy win for your Monday! Its very easy to add a nicely styled login/logout item to your Astra Theme menu like so:

Just add the following PHP code (note this should be added to your child theme):

/**
 * Adds login/logout to the Astra menu
 */

add_filter('wp_nav_menu_items', function ($items, $args) {

    // Only used on main menu
    if ('primary' != $args->theme_location) {
        return $items;
    }

    // Add custom item
    $items .= '<li class="astra-child-custom-login-logout-link menu-button menu-item">';

    // Log-out link
    if (is_user_logged_in()) {

        $text = 'Logout';
        $logout_redirect = home_url('/'); // Change logout redirect URl here

        $items .= '<a class="ast-custom-button-link" href="' . wp_logout_url($logout_redirect) . '" title="' . esc_attr($text) . '">
        <div class="ast-button">' . strip_tags($text) . '</div></a>';
    }

    // Log-in link
    else {

        $text = 'Login';
        $login_url = wp_login_url(); // Change if you want a custom login url

        $items .= '<a class="ast-custom-button-link" href="' . esc_url($login_url) . '" title="' . esc_attr($text) . '">
        <div class="ast-button">' . strip_tags($text) . '</div></a>';

    }

    $items .= '</li>';

    // Return nav $items
    return $items;

}, 20, 2);

If you don’t have a child theme setup, then you might want to use this resource. Then all you need to do is upload the generated theme and activate it (note: you might need to tweak some customizer settings after this).

About The Author

1 thought on “How to Add a Login/Logout Item to the Menu in a WP Astra Theme”

  1. Thanks Rhyso!
    This is very useful for non coders like me.
    I added to all the menus…not only primary. One thing I would request your help on – I dont want the new login/logout button stylised like this but rather retain the default style of the other menu items. How do I do that?

    Many thanks for all your guidance, its deeply appreciated.

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top