juandahveed
9/28/2017 - 1:15 PM

filter blog headlines

filter blog headlines

function blogFilterH1($content) {
	if ( is_single() || is_archive() ) {
	$content = str_replace('<h1>', '<h4 style="margin-top:20px;">', $content);
	$content = str_replace('</h1>', '</h4>', $content);
	}
	return $content;
}

add_filter('the_content', 'blogFilterH1');