setting on Login Form

wp-includes\general-templage.php

function wp_loginout($redirect = ”) {
if ( ! is_user_logged_in() )
$link = ‘<a href=”‘ . wp_login_url($redirect) . ‘”>’ . __(‘Log in’) . ‘</a>’;
else
$link = ‘<a href=”‘ . wp_logout_url($redirect) . ‘”>’ . __(‘Log out’) . ‘</a>’;

echo apply_filters(‘loginout’, $link);
}

Comments

comments