Hi all,
Please excuse my lack of knowledge when it comes to WordPress as I try to explain my issue:
I'm creating a child theme using twentyeleven as the parent. The widget-title is wrapped within an <h3> tag. I want to override that <h3> tag with an <h5>. I see where it's called in the twentyeleven functions.php file, but how do I/and what is the proper procedure when trying to override that specific function?
This is what I see in the twentyeleven functions.php file:
function twentyeleven_widgets_init() {
register_widget( 'Twenty_Eleven_Ephemera_Widget' );
register_sidebar( array(
'name' => __( 'Main Sidebar', 'twentyeleven' ),
'id' => 'sidebar-1',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => "</aside>",
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
}