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.
Is it possible to change the footer-widget titles to a
tag?
Now all footer widget titles are:
I want to update this to:
(title)
This for SEO reasons.
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
);
Perfect! Works like a charm. Thank you!