Here’s easy & simple wordpress code snippet which allows you to remove the WordPress version number from dashboard footer. You need copy bellow code snippet and paste in your functions.php file of current theme.
1 2 3 4 5 6 |
//Remove WordPress Version From The Admin Footer function remove_wordpress_version() { remove_filter( 'update_footer', 'core_update_footer' ); } add_action( 'admin_menu', 'remove_wordpress_version' ); |
Have Fun!
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.
Article Tags: Technology, Tip and tricks, Tutorials, wordpress