Skip to content

Instantly share code, notes, and snippets.

View fsimmons's full-sized avatar

Fred Simmons fsimmons

View GitHub Profile
<?php
/**
* Dont Update the Theme
*
* If there is a theme in the repo with the same name, this prevents WP from prompting an update.
*
* @since 1.0.0
* @param array $r Existing request arguments
* @param string $url Request URL
* @return array Amended request arguments
@rickydazla
rickydazla / retina-logo.html
Last active March 10, 2016 02:04
Shopify Retina SVG logo switcheroo_modernizr
<a href="{{ shop.url }}">
<img
src="{{ 'logo.png' | asset_url }}"
alt="{{ shop.name }}"
data-retina-src="{{ 'logo.svg' | asset_url }}">
</a>
<script type="text/javascript">
Modernizr.addTest('retina', function () {
return (!!navigator.userAgent.match(/Macintosh|Mac|iPhone|iPad/i) && window.devicePixelRatio==2);
});