Skip to content

trepmal.com

  • Home
  • Plugins
  • Github
  • Me on WP.org
  • Donate

Filter Hook: loginout

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;
}
Posted on April 5, 2011March 1, 2012Categories WordPress BitsLeave a comment on Change “Log In/Out” Links to “Sign In/Out”
Proudly powered by WordPress