• How to change <h2 widget-title subheading heading-size-3 to <h4 widget-title subheading heading-size-3

    I am using child theme.

    • This topic was modified 4 years, 10 months ago by Sukanta Das.
Viewing 1 replies (of 1 total)
  • you can use a filter, added to functions.php of the child theme, to do this:

    //change sidebar parameters in child theme//
    
    add_filter('dynamic_sidebar_params', 'twentytwentychild_edit_widget_func');
    
    function twentytwentychild_edit_widget_func($params) {
        $params[0]['before_title'] =  '<h4 class="widget-title subheading heading-size-3">' ;
        $params[0]['after_title'] =  '</h4>' ;
        return $params;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How to change html tags of widget titles’ is closed to new replies.