Advertisement
thesufi

Remove version from wp dashboard

Aug 18th, 2014
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. function dct_remove_version() {
  2.     add_filter( 'update_footer', 'dct_no_version', 11 );
  3. }
  4.  
  5. function dct_no_version($content) {
  6.     return;
  7. }
  8. add_action( 'admin_init', 'dct_remove_version' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement