Last active
August 29, 2015 14:04
-
-
Save tomhemsley/aa4b1d9da39eb63b8d86 to your computer and use it in GitHub Desktop.
Advanced Custom Fields - Date in Post Feed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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