[wp-trac] [WordPress Trac] #34356: I should be able to change the Login/Logout text in wp_loginout()
WordPress Trac
noreply at wordpress.org
Mon Oct 19 14:25:04 UTC 2015
#34356: I should be able to change the Login/Logout text in wp_loginout()
------------------------------------+-----------------------------
Reporter: aubreypwd | Owner:
Type: enhancement | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Login and Registration | Version: trunk
Severity: normal | Keywords:
Focuses: |
------------------------------------+-----------------------------
E.g.
{{{#!php
<?php
function my_login_text( $text ) {
return __( "My Login" );
}
add_filter( 'login_text', 'my_login_text' );
function my_logout_text( $text ) {
return __( "My Logout" );
}
add_filter( 'logout_text', 'my_logout_text' );
}}}
--
Ticket URL: <https://core.trac.wordpress.org/ticket/34356>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list