Skip to content

Instantly share code, notes, and snippets.

@joemcgill
joemcgill / grunt-watch-livereload.js
Last active August 29, 2015 13:57
This is an example of setting up a grunt watch task to use grunt-contrib-connect and livereload.
// The rest of the grunt file goes here
watch: {
// The rest of your watch tasks go here
livereload: {
options: {
livereload: '<%= connect.options.livereload %>'
},
files: [
// YOUR LIST OF FILES TO WATCH
@joemcgill
joemcgill / gist:9236cb10f271035414e6
Last active August 29, 2015 14:01
Grunt watch task example for Pattern Lab
watch: {
options: {
livereload: {
options: {livereload: '<%= connect.options.livereload %>'},
files: [
'public/**/*'
]
}
},
html: {
# This is a template .gitignore file for git-managed WordPress projects.
#
# Fact: you don't want WordPress core files, or your server-specific
# configuration files etc., in your project's repository. You just don't.
#
# Solution: stick this file up your repository root (which it assumes is
# also the WordPress root directory) and add exceptions for any plugins,
# themes, and other directories that should be under version control.
#
# See the comments below for more info on how to add exceptions for your
@joemcgill
joemcgill / gist:ec7f018875ceb0cbff3e
Last active August 29, 2015 14:03
WP Custom User Meta
<?php
/**
* Add custom user fields/meta info
*/
add_action( 'show_user_profile', 'wu_custom_user_meta', 9 );
add_action( 'edit_user_profile', 'wu_custom_user_meta', 9 );
function wu_custom_user_meta( $user ) {
// create nonce field
@joemcgill
joemcgill / .htaccess
Created July 24, 2014 17:28
Wordpress Dev Uploads Directory Trick
# Attempt to load files from production if they're not in our local version
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
# Replace http://productionsite.com with your production site's domain name
RewriteRule (.*) http://productionsite.com/wp-content/uploads/$1
</IfModule>
@joemcgill
joemcgill / svgTest.js
Last active August 29, 2015 14:04
SVG Test w/o Modernizr
// SVG Test
(function () {
function supportsSVG() {
return !!document.createElementNS && !! document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect;
}
if (!supportsSVG()) {
document.documentElement.className += ' no-svg';
// optional .png fallback for .svg files inlined as <img> elements
$("img[src$='.svg']").attr("src", function() {
return $(this).attr('src').replace('.svg', '.png');
@joemcgill
joemcgill / widow_buster.php
Created September 3, 2014 17:55
Wordpress Widow Busting Function
<?php
/**
* Avoid widows in text by replacing the final space in each paragraph with a &nbsp;
*
* Inspired by David Walsh (http://davidwalsh.name/word-wrap-mootools-php)
*
* @param string $content Content passed into the filter
* @return string the filtered content
*/
function wustl_widow_buster ($content) {
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/base16-ocean.dark (SL).tmTheme",
"detect_slow_plugins": false,
"folder_exclude_patterns":
[
".git",
".sass-cache",
"bower_components"
],
/* Overrides the database for development URLs */
define('WP_SITEURL', 'http://my.domain.dev');
define('WP_HOME', 'http://my.domain.dev');
@joemcgill
joemcgill / no_responsive_image_feeds.php
Created December 3, 2015 04:00
Remove responsive images from feeds.
function no_responsive_image_feeds() {
add_filter( 'max_srcset_image_width', function() {
return 1;
} );
}
add_action('rss2_head', 'no_responsive_image_feeds' );
add_action('atom_head', 'no_responsive_image_feeds' );
add_action('rss_head', 'no_responsive_image_feeds' );