You appear to be a bot. Output may be restricted
Description
Implement "login_headertext" for oikReplace "Powered by WordPress" with our Site name
Usage
$string = oik_login_headertitle( $login_header_title );
Parameters
- $login_header_title
- ( string ) required – probably "Powered by WordPress"
Returns
string whatever get_bloginfo() returnsSource
File name: oik/shortcodes/oik-logo.phpLines:
1 to 4 of 4
function oik_login_headertitle( $login_header_title ) { $login_header_title = get_bloginfo( "name" ); return( $login_header_title ); }View on GitHub View on Trac