Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Logout link shortcode

Used in Madres Emprendedoras

// Add Shortcode
function jts_logout_button_shortcut() {

		global $current_user;
	    wp_get_current_user();
	  
		echo '¡Hola ' . $current_user->display_name .'!, ';
		echo '<a class="logout-header" href="'; 
	  	echo wp_logout_url(get_permalink()); 
	  	echo '">Salir</a>';

}
add_shortcode( 'logout_button', 'jts_logout_button_shortcut' );