Warning: Undefined array key "title" in /home/u593943216/domains/wp-experts.in/public_html/secure_content/themes/wp-experts/inc/classes/class-hooks.php on line 151
Hello friends, If you want remove the footer from admin then please follow these steps : Go to your theme folder Open function.php file in editor add this code in your function : //Hide admin footer from admin function change_footer_admin () {return ' ';} add_filter('admin_footer_text', 'change_footer_admin', 9999); function change_footer_version() {return ' ';} add_filter( 'update_footer', 'change_footer_version', 9999);