Viewing 1 replies (of 1 total)
  • Add this in your theme functions.php

    // Add Shortcode for LOGOUT LINK
    function logout_link() {
    	return "<a href='" . wp_logout_url( home_url() ) . "' class='logout_link'>Logout</a>";
    }
    add_shortcode( 'logout_link', 'logout_link' );

    Use this shortcode on homepage. [logout_link]

Viewing 1 replies (of 1 total)

The topic ‘How to make logout button’ is closed to new replies.