10 Useful Wordpress User Interface / Dashboard Hacks!: "3. Remove Powered by WordPress in Footer
You dont want to show, powered by wordpress in the footer of your user interface. Make changes to it, using the following code
?
CODE
1
2
3
4
5
6
// Remove Powered by WordPress.org
function modify_footer_admin () {
echo 'Example.com - My Account Section';
}
add_filter('admin_footer_text', 'modify_footer_admin');
"
'via Blog this'
No comments:
Post a Comment