Change the Footer in WordPress Admin Panel
In the following way ,you can change the footer of your wordPress themes by adding the following guideline. You need to just paste the following code:
function remove_footer_admin () {
echo 'Powered by <a href="http://www.sandipdas.in" target="_blank">Sandip Das</a> | Designed by <a href="http://php-mysql-guide.blogspot.com/" target="_blank">PHP MYSQL GUIDE</a></p>';
}
add_filter('admin_footer_text', 'remove_footer_admin');
In the following way ,you can change the footer of your wordPress themes by adding the following guideline. You need to just paste the following code:
function remove_footer_admin () {
echo 'Powered by <a href="http://www.sandipdas.in" target="_blank">Sandip Das</a> | Designed by <a href="http://php-mysql-guide.blogspot.com/" target="_blank">PHP MYSQL GUIDE</a></p>';
}
add_filter('admin_footer_text', 'remove_footer_admin');
No comments:
Post a Comment