Skip to content

Instantly share code, notes, and snippets.

View greatislander's full-sized avatar
🪿

Ned Zimmerman greatislander

🪿
View GitHub Profile
@greatislander
greatislander / copyright_year.php
Created January 3, 2014 22:45
Display appropriate license timespan starting from a certain year, e.g. 2014 if the license began in 2014 and it is currently 2014, or 2013–2014 if the license began in 2013 and it is currently 2014.
@greatislander
greatislander / check_for_production.php
Created August 20, 2013 22:51
Only display analytics code (Google Analytics, GoSquared, etc.) if you are on your production site as opposed to dev or staging.
<?php $production = ( site_url() == 'http://myproductionsite.com' ) ? true : false; // no trailing slash
if ( $production == true && !is_user_logged_in() ) {
// Put your analytics code here.
} ?>