Change “Log In/Out” Links to “Sign In/Out”

If you’d prefer your Log In/Out links use different verbiage, fear not! You can change it:

add_filter( 'loginout', 'log2sign' );
function log2sign( $link ) {
    $link = str_replace( 'Log ', 'Sign ', $link );
    return $link;
}

Leave a Reply

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

%d bloggers like this: