Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

s

// Register Default Headers
function custom_default_headers() {

	$headers = array(
	);
	register_default_headers( $headers );

}

// Hook into the 'after_setup_theme' action
add_action( 'after_setup_theme', 'custom_default_headers' );