wp-structuring-markup icon indicating copy to clipboard operation
wp-structuring-markup copied to clipboard

How to wrap the breadcrumb items with span tag?

Open 70599 opened this issue 5 years ago • 0 comments

I have tried code like this, but not working.

add_filter('structuring_markup_meta_breadcrumb', function($out) {
	$out	= str_replace('<li>', '<li><span>', $out);
	$out	= str_replace('</li>', '</span><li>', $out);
	return $out;
});

70599 avatar Nov 05 '19 10:11 70599