Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #179 from Braunson/master
Browse files Browse the repository at this point in the history
Fixed admin.php functions for WP 3.8.1
  • Loading branch information
chrisbarnes committed Jun 13, 2014
2 parents 1c69691 + 0f7f31d commit 34b21fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/admin.php
Expand Up @@ -98,10 +98,10 @@ function wp_bootstrap_login_css() {
}

// changing the logo link from wordpress.org to your site
function wp_bootstrap_login_url() { echo bloginfo('url'); }
function wp_bootstrap_login_url() { return get_bloginfo('url', 'raw'); }

// changing the alt text on the logo to show your site name
function wp_bootstrap_login_title() { echo get_option('blogname'); }
function wp_bootstrap_login_title() { return get_option('blogname'); }

// calling it only on the login page
add_action('login_head', 'wp_bootstrap_login_css');
Expand Down

0 comments on commit 34b21fb

Please sign in to comment.