By default the widget titles in Genesis have h3
tag like this:
If you would like to change the h3
s to another tag, like a div
s or h4
s, add the following in your child theme’s functions.php:
// Replace h3 with h4 for all widget titles
add_filter( 'genesis_register_sidebar_defaults', 'custom_register_sidebar_defaults' );
function custom_register_sidebar_defaults( $defaults ) {
$defaults['before_title'] = '<h4 class="widget-title widgettitle">';
$defaults['after_title'] = '</h4>';
return $defaults;
}