diff --git a/README b/README index 6f2f69a..e2410aa 100644 --- a/README +++ b/README @@ -9,6 +9,10 @@ Ian Stewart for his Toolbox theme and Paul Irish for his HTML5 Boilerplate. +## Recent Changes (0.9.1) + +1. Replace 'Howdy' in the admin bar with Welcome. Thank to jamescarrier for this. + ## Recent Changes (0.9.0) 1. Code for Apple Touch icons updated in header.php. Thanks to jamescarrier for this. diff --git a/functions.php b/functions.php index a1e0b39..3bca3f7 100644 --- a/functions.php +++ b/functions.php @@ -108,8 +108,7 @@ function customize_meta_boxes() { /** * Remove superfluous elements from the admin bar (uncomment as necessary) */ -function remove_admin_bar_links() -{ +function remove_admin_bar_links() { global $wp_admin_bar; //$wp_admin_bar->remove_menu('wp-logo'); @@ -126,10 +125,9 @@ function remove_admin_bar_links() //add_action('wp_before_admin_bar_render', 'remove_admin_bar_links'); /** - * Replace the default welcome 'howdy' in the admin bar with something more professional. + * Replace the default welcome 'Howdy' in the admin bar with something more professional. */ -function admin_bar_replace_howdy($wp_admin_bar) -{ +function admin_bar_replace_howdy($wp_admin_bar) { $account = $wp_admin_bar->get_node('my-account'); $replace = str_replace('Howdy,', 'Welcome,', $account->title); $wp_admin_bar->add_node(array('id' => 'my-account', 'title' => $replace)); diff --git a/style.css b/style.css index 9aee46d..54770d0 100644 --- a/style.css +++ b/style.css @@ -4,7 +4,7 @@ Theme URI: http://www.thewebsite.com Author: Randy Jensen & Randy Hoyt Author URI: http://www.handcraftedwp.com Description: HTML5 starter theme based off Ian Stewart's HTML5 Toolbox Theme with other goodies added plus chunks of Paul Irish's HTML5 Boilerplate mixed in for good measure. Shake well. -Version: 0.9.0 +Version: 0.9.1 */ /* html5doctor.com Reset Stylesheet \\v1.6.1 \\ Last Updated: 2010-09-17 \\ http://richclarkdesign.com \\ @rich_clark */