• Resolved StarryMom

    (@starrymom)


    Since most pages / posts don’t have the full h1 / h2 / h3 order, can we remove the h4 and replace it with a div?

    <h4 class="posts_on_this_day__year">
    <div class="posts_on_this_day__year">
Viewing 1 replies (of 1 total)
  • Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic 🚀

    I’ve just released a new version of the plugin to allow you to set your own structure. To move from h4 to div, you would add the following code snippet to a functionality plugin on your site:

    add_filter(
    	'jeherve_posts_on_this_day_widget_year_heading',
    	function () {
    		return 'div';
    	}
    );

    That should do it! I hope this helps.

Viewing 1 replies (of 1 total)

The topic ‘Change H4 to DIV?’ is closed to new replies.