lots0logs
8/15/2016 - 8:27 PM

WordPress :: Divi Builder :: Post Title Module :: Change the character used as a separator for post meta info.

WordPress :: Divi Builder :: Post Title Module :: Change the character used as a separator for post meta info.

<script>
	(function($) {
		var $meta_container = $('.et_pb_title_meta_container');
		
		$meta_container.each(function() {
			var old_html = $(this).html(),
				new_html = old_html.replace('|', '/', -1);
			
			$(this).html(new_html);
			
		});
	})(jQuery);
</script>