Revision: 29525
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at July 31, 2010 06:17 by trepmal
Initial Code
<?php add_filter('admin_user_info_links','blog_id_in_howdy_greeting'); function blog_id_in_howdy_greeting($links) { global $blog_id; if ( is_super_admin() ) { $links[] = ' | <a href="/ms-sites.php?action=editblog&id=' . $blog_id . '">Site ID: ' . $blog_id . '</a>'; } else { $links[] = ' | Site ID: ' . $blog_id; } return $links; } ?>
Initial URL
http://trepmal.com/wordpress-tips/put-site-id-by-howdy-greeting-in-wordpress/
Initial Description
Initial Title
Put site ID by "Howdy" in WordPress 3.0
Initial Tags
wordpress
Initial Language
PHP