Those aren't error, those are warning, you can hide warnings by this code:
error_reporting(E_ERROR | E_PARSE);
also you can turn off wordpress debugger in wp-config.php , replace this code
define( 'WP_DEBUG', true );
with
define( 'WP_DEBUG', false );