WordPress is one of the most famous CMS for blogging but nowadays it has been entended outside of just blogging, while doing other sites some of your clients may want to change some texts in the admin panel, so in this post am going to explain about how to chage or remove some default functions (Copyright,Howdy,Version,Login logo,etc) in wordpress admin panel.

How to Change or remove WordPress Admin Default Text
Code to Change wordpress admin Copyright text.
Below is the code to change wordpress default copyright text
function remove_footer_admin () {
echo '© 2012 All Rights Reserved. Web Design & Development Services Done by <a href="http://www.yoursite.com" target="_blank">Yoursitename</a></p>';
}
add_filter('admin_footer_text', 'remove_footer_admin');
Code to Remove wordpress admin footer version text.
Below is the code to remove wordpress admin footer version text.
function change_footer_version() {return ' ';}
add_filter( 'update_footer', 'change_footer_version', 9999);
Code to Change admin Howdy Text
Below is the code to change wordpress admin howdy text.
function change_howdy_text( $translation, $original ) {
if( 'Howdy, %1$s' == $original )
{
$translation = 'Logged in as %1$s';
}
else if('Version 3.3.1' == $original)
{
$translation = '';
}
return $translation;
}
add_filter( 'gettext', 'change_howdy_text', 10, 2 );
Code to Change wordpress admin page title
By default the word wordpress will come on every page title in wordpress admin section to change this with your site title here is the code
add_filter('admin_title', 'my_admin_title', 10, 2);
function my_admin_title($admin_title, $title)
{
return get_bloginfo('name').' ­ '.$title;
}
Code to Change WordPress Login Logo
To change wordpress admin login page wordpress logo with your custom logo here is the code
function my_custom_login_logo() {
echo '<style>
h1 a { background-image:url('.get_bloginfo('template_directory').'/images/logo.gif) !important; }
</style>';
}
add_action('login_head', 'my_custom_login_logo');
Code to change wordpress admin login page logo URL
To change wordpress admin login page wordpress logo link with your custom link here is the code
add_filter( 'login_headerurl', 'my_custom_login_url' );
function my_custom_login_url($url) {
return 'http://www.yoursite.com';
}
//Change Login Title
function custom_login_title($title) {
return bloginfo('Your Site Name');;
}
add_filter( 'login_headertitle', 'custom_login_title' );
Code to add favicon to wordpress admin
Below is the code to add favicon to wordpress admin section
function admin_favicon() {
echo '<link rel="Icon" href="'.get_bloginfo('stylesheet_directory').'/images/favicon.ico" />';
echo '<link rel="Shortcut Icon" href="'.get_bloginfo('stylesheet_directory').'/images/favicon.ico" />';
}
add_action('admin_head', 'admin_favicon');
Your codes for making these changes are cute, but some us are just getting statred with php programming as it relates to WordPress and will like some hint on which files paste these codes to effect the desoired changes