This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Highlight Scheduled Posts | |
Plugin URI: http://somadesign.ca/ | |
Description: Highlight scheduled posts in the admin | |
Version: 0.1 | |
Author: Matt Wiebe | |
Author URI: http://somadesign.ca/ | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: A Plugin Name | |
Plugin URI: http://somadesign.ca/ | |
Description: Be descriptive. | |
Version: 0.1 | |
Author: Soma Design | |
Author URI: http://somadesign.ca/ | |
License: GPL v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Load a template part into a template. | |
* A subdirecory-favoring variant of get_template_part() for cleaner themes. | |
* | |
* Makes it easy for a theme to reuse sections of code in a easy to overload way | |
* for child themes. | |
* | |
* Includes {slug}/{slug}.php for a theme or if a name is specified then a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Mobile First Responsive Images | |
Description: Serve up smaller images to smaller screens. | |
Version: 0.1.1 | |
Author: Matt Wiebe | |
Author URI: http://somadesign.ca/ | |
*/ | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* HTML5 doesn't require the "type" attribute for JS or CSS. | |
* Say hello to leaner markup. | |
*/ | |
// html5-ify it | |
add_action('wp_footer', 'sd_script_decruft_start', -10); | |
add_action('wp_head', 'sd_script_decruft_start', -10); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* jQuery AfterScroll 1.0 | |
* | |
* Do something once the bottom of an element comes into view, | |
* and something when you scroll above it too. | |
* | |
* (c) 2011 Matt Wiebe http://somadesign.ca/ | |
* GPL2 / MIT dual-license, just like jQuery | |
* http://jquery.org/license/ | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Mac OS X has some outdated build dependencies. | |
# This script will bring you up-to-date, then install ttfautohint. | |
# Only tested under 10.7.1, but should work | |
# You'll obviously need Developer Tools installed first. | |
mkdir ~/tmp | |
cd ~/tmp | |
curl -O http://mirrors.kernel.org/gnu/m4/m4-1.4.16.tar.gz | |
tar -xzvf m4-1.4.16.tar.gz | |
cd m4-1.4.16 | |
./configure --prefix=/usr/local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Turns someCrazyName into Some Crazy Name | |
* Decent job of acroynyms: | |
* ABCAcryonym => ABC Acryoynm | |
* xmlHTTPRequest => Xml HTTP Request | |
*/ | |
String.prototype.unCamelCase = function(){ | |
return this | |
// insert a space between lower & upper | |
.replace(/([a-z])([A-Z])/g, '$1 $2') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'wp_enqueue_scripts', 'piss_off_query_strings' ); | |
function piss_off_query_strings() { | |
global $wp_scripts, $wp_styles; | |
foreach( (array) $wp_scripts->registered as $handle => $obj ) { | |
$wp_scripts->registered[$handle]->ver = null; | |
} | |
foreach( (array) $wp_styles->registered as $handle => $obj ) { | |
$wp_styles->registered[$handle]->ver = null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The WordPress answer to: | |
* @link paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ | |
* @author Matt Wiebe | |
* @link http://somadesign.ca/ | |
* @var $min int minimum version of IE to target. | |
* @var $max int maximum version of IE to target - will receive no IE-specific classes. | |
*/ |