Home › Forums › Support › H2 heading tags in recent posts issue This topic has 3 replies, 2 voices, and was last updated 3 years, 7 months ago by David. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts April 29, 2020 at 2:16 am #1260783 Dalibor 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 April 29, 2020 at 8:07 am #1261383 DavidStaff Customer Support 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>'; } April 29, 2020 at 10:28 am #1261635 Dalibor It worked, thank you on a quick fix. April 30, 2020 at 2:04 am #1262541 DavidStaff Customer Support Glad to be of help Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In