Skip to content

Instantly share code, notes, and snippets.

@congthien
Last active February 26, 2018 10:00
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 congthien/154e34fb292558f0dc29d5d4943633d2 to your computer and use it in GitHub Desktop.
Save congthien/154e34fb292558f0dc29d5d4943633d2 to your computer and use it in GitHub Desktop.
function onepress_custom_date_function() {
echo '<script type="text/javascript">
jQuery(document).ready(function( $ ){
copyright = new Date();
$("#theYear").html( copyright.getFullYear() );
});
</script>';
}
add_action( 'wp_footer', 'onepress_custom_date_function' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment