How to remove version and thank you message from the admin footer

This works for me:

<?php
/** Plugin Name: Admin Footer Text Remover **/

add_filter( 'admin_footer_text', '__return_empty_string', 11 );
add_filter( 'update_footer',     '__return_empty_string', 11 );

where I use the __return_empty_string function as a callback.

Leave a Comment