Change footer title <h5> to <p> tag

Is it possible to change the footer-widget titles to a

tag?

Now all footer widget titles are:

(title)

I want to update this to:

(title)

This for SEO reasons.

1 Like

Hi,

Please try this code snippet:

add_filter(
 'hivetheme/v1/widget_areas',
 function ( $areas ) {
  $areas ['site_footer'] ['before_title'] = '<p class="widget__title">';
  $areas ['site_footer'] ['after_title']  = '</p>';
  return $areas;
 },
 1000
);
1 Like

Perfect! Works like a charm. Thank you!

1 Like