Skip to content

Instantly share code, notes, and snippets.

@shazdeh
Created November 3, 2013 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shazdeh/7288642 to your computer and use it in GitHub Desktop.
Save shazdeh/7288642 to your computer and use it in GitHub Desktop.
Customizing date formats. PHP reference: http://php.net/manual/en/function.date.php
<?php
function custom_date_format( $format ) {
return 'M j, Y';
}
add_filter( 'themify_loop_date', 'custom_date_format' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment