Archived topic
H2 heading tags in recent posts issue
3 replies · Started by Dalibor on April 29, 2020
Viewing posts 1–4 of 4
I'd like to change "Recent posts" heading from H2 to let's say H4 (for SEO purposes).
What is the best way to accomplish that?
I have GP Premium and I really like it so far.
Regards,
Dalibor
Hi there,
try this PHP snippet:
add_filter( 'generate_start_widget_title','generate_remove_widget_title_h3' );
function generate_remove_widget_title_h3()
{
return '<h3 class="widget-title">';
}
add_filter( 'generate_end_widget_title','generate_remove_widget_title_end_h3' );
function generate_remove_widget_title_end_h3()
{
return '</h3>';
}
It worked, thank you on a quick fix.
Glad to be of help
This archived topic is closed to new replies.