deepak-rajpal
3/12/2014 - 1:18 PM

adding header meta to wordpess using wp_head filter

adding header meta to wordpess using wp_head filter

/* Testing Header meta/any code filter */
add_action('wp_head','hook_meta');
function hook_meta() {
	$output="<meta name='keywords' content='HTML,CSS,XML,JavaScript'>";
	echo $output;
}