Wordpress Issue - Update Causing 28px top-spacing in html body
Remove extra 28px with adding the code in functions.php file. May be some others developers/designers are getting this issue. It works well for me.
function my_function_admin_bar(){ return false; } add_filter( 'show_admin_bar' , 'my_function_admin_bar');















