Skip to content

Instantly share code, notes, and snippets.

View diegolucero's full-sized avatar

Diego Lucero diegolucero

View GitHub Profile
@diegolucero
diegolucero / UpdatedYearShortcode.php
Created November 22, 2017 17:00
Add this to your functions.php child theme to add the shortcode [year] into your wordpress install. Great for footers that require an updated copyright year.
// Updates year in footer
// =============================================================================
function year_shortcode() {
$year = date('Y');
return $year;
}
add_shortcode('year', 'year_shortcode');