Skip to content

Instantly share code, notes, and snippets.

@tomhemsley
Last active August 29, 2015 14:04
Show Gist options
  • Save tomhemsley/aa4b1d9da39eb63b8d86 to your computer and use it in GitHub Desktop.
Save tomhemsley/aa4b1d9da39eb63b8d86 to your computer and use it in GitHub Desktop.
Advanced Custom Fields - Date in Post Feed
/**
* Converts an ACF date field from DDMMYYYY to DD.MM.YYYY
*/
function metaslider_acf_date($content) {
$content = str_replace( "{start_date}", date( 'd.m.Y', strtotime( get_field('start_date') ) ) , $content );
return $content;
}
add_filter( "metaslider_post_feed_template", "metaslider_acf_date" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment