Wordpress automatically generate lot of unwanted tags every where. Even the img tag also wrap by these t
You need to run the remove_filter function in the after_setup_theme hook. The reason been is that it might get overrun by later on by the content or excerpt. So you would use the function as follow
function remove_the_wpautop_function() {
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
}
add_action( 'after_setup_theme', 'remove_the_wpautop_function' );