12/22/2014 at 9:11 am
#313278
Keymaster
@ dominic
Rather than edit a file … here’s an update safe way to do it.
Install the Code Snippets plugin.
Add a new snippet with the following code:
add_filter( 'cn_output_content_block_atts', 'cn_output_content_block_atts' );
function cn_output_content_block_atts( $atts ) {
$atts['header_tag'] = 'h4';
return $atts;
}
Save and activate the new snippet.
