Skip to content

Instantly share code, notes, and snippets.

@davidmottershead
Last active August 29, 2015 14:06
Show Gist options
  • Save davidmottershead/5acfbf5ba0040a580576 to your computer and use it in GitHub Desktop.
Save davidmottershead/5acfbf5ba0040a580576 to your computer and use it in GitHub Desktop.
Shortcode function to display last updated date for currency rates in Currencyr WordPress plugin http://www.davidmottershead.com/articles/live-currency-exchange-rates-wordpress/
function currency_shortcode ()
{
global $currencyr;
return $currencyr->updated;
}
add_shortcode ('currencydate','currency_shortcode');
//Usage - exchange rates below were last updated on [currencydate]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment