If you log in to the WordPress admin panel, take a look at the bottom of the right hand side window. It should show “Thank you for creating with WordPress” message by default. However, there are very simple ways to change it or to customize it based on your own need.
If you are a developer or simply the designer of any WordPress based website, or may be creating a custom WordPress theme for others, you can take the advantage of this very simple snippet code.
<?php
add_filter('admin_footer_text','admin_footer_msg');
function admin_footer_msg() {
echo 'Customized by: <a href="#" target="_blank">Your Name</a>';
}
?>
Place above snippet code on your theme’s functions.php file and update the page. Default message should be replaced with the text “Customized by: Your Name”, you can also add you email with a mailto link and both your name and email can be displayed accordingly. It could be really helpful if your customer wants to get back to you for any future need. I hope this helps you all.
Comment
Leave a Reply