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;
}
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;
}