Skip to content
feedzy-rss-feeds

Manually cleaning feeds? Still? Go Pro to filter by keyword, auto-clean old posts, and set fallback images automatically.

See Pro Plans →

How to remove time from publication date

Change publication date format from

January 3, 2017 at 12:39 pm

to

January 3, 2017

using this code

add_filter( 'feedzy_meta_output', 'tifd_fix_meta_output' );

function tifd_fix_meta_output( $content ) {
	//Change publication date from 
	return str_replace( 'on', '', substr( $content, 0, strpos( $content, 'at' ) ) );
}