Skip to content

Instantly share code, notes, and snippets.

@SCRWD
Created May 14, 2010 21:32
Show Gist options
  • Select an option

  • Save SCRWD/401701 to your computer and use it in GitHub Desktop.

Select an option

Save SCRWD/401701 to your computer and use it in GitHub Desktop.
// jon.posterous.com
// makes the month a short month e.g. April becomes Apr
add_filter( "get_archives_link", "customarchives_shortmonth");
function customarchives_shortmonth( $x )
{
return preg_replace('@((janu|febru)ary|march|april|may|june|july|august|(septem|octo|novem|decem)ber)@ie', "substr('\\1', 0, 3)", $x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment