Skip to content

Instantly share code, notes, and snippets.

View mattwiebe's full-sized avatar

Matt Wiebe mattwiebe

View GitHub Profile
@mattwiebe
mattwiebe / highlight-scheduled-posts.php
Created February 23, 2012 17:53
Highlight Scheduled Posts
<?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/
*/
@mattwiebe
mattwiebe / wp_plugin_stub.php
Created January 10, 2012 18:05
A good starting place for a static class-based WordPress plugin
<?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
<?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
@mattwiebe
mattwiebe / responsive-images.php
Created September 21, 2011 23:02
Mobile First Responsive Images for WordPress
<?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/
*/
/**
@mattwiebe
mattwiebe / wp_html5ify.php
Created September 20, 2011 15:22
HTML5 script and style
<?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);
@mattwiebe
mattwiebe / jquery.afterscroll.js
Created September 13, 2011 21:05
Do something after you scroll past a certain element. Maybe do something else when you scroll back above it.
/*!
* 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/
*
@mattwiebe
mattwiebe / ttfautohint_install.sh
Created August 18, 2011 19:10
Install ttfautohint on Mac OS X
# 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
@mattwiebe
mattwiebe / unCamelCase.js
Created June 3, 2011 05:27
unCamelCase.js
/**
* 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')
@mattwiebe
mattwiebe / no_querystrings.php
Created April 18, 2011 22:39
Gets rid of WordPress's (annoying) usage of querystrings for versioning.
<?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;
@mattwiebe
mattwiebe / conditional-html.php
Created April 8, 2011 05:11
Conditional <html> for WordPress
<?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.
*/