Skip to content

1.5.5

Latest
Compare
Choose a tag to compare
@jeherve jeherve released this 08 May 07:23
· 49 commits to master since this release
20a100a

[1.5.5] - 2023-05-08

  • Widget: add a new filter, jeherve_posts_on_this_day_widget_year_heading, allowing one to customize the heading used to display years in the widget.

Use the filter like so:

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