This file contains hidden or 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
Atom settings |
This file contains hidden or 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
twentyfifteen/ | |
twentyfourteen/ | |
twentythirteen/ | |
/index.php | |
.DS_Store | |
node_modules/ | |
package.json |
This file contains hidden or 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
// Gulp Requires | |
var gulp = require('gulp'), | |
plumber = require('gulp-plumber'), | |
// through = require('through-pipes'), | |
gutil = require('gulp-util'), | |
notify = require('gulp-notify'), | |
sass = require('gulp-sass'), | |
autoprefixer = require('gulp-autoprefixer'), | |
minifycss = require('gulp-minify-css'), | |
concat = require('gulp-concat'), |
This file contains hidden or 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
var gulp = require("gulp"); | |
var minifycss = require('gulp-minify-css'); | |
var autoprefixer = require('gulp-autoprefixer'); | |
var notify = require('gulp-notify'); | |
var sass = require('gulp-ruby-sass'); | |
var imagemin = require('gulp-imagemin'); | |
var cache = require('gulp-cache'); | |
gulp.task('css', function() { | |
return gulp.src('sass/style.scss') |
This file contains hidden or 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 | |
include (get_template_directory() . '/library/includes/universal/utms-superinclude-topnav.php'); | |
?> |
This file contains hidden or 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
BASE: | |
<?php | |
include (get_template_directory() . '/includes/universal/utms-superinclude-topnav.php'); | |
?> | |
This file contains hidden or 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
// Ben Folds Five Poster - Cityscape Generator by Brendan Dawes | |
// http://brendandawes.com/projects/benfoldsfive/ | |
// Requires library from http://toxiclibs.org | |
import toxi.color.*; | |
import toxi.util.datatypes.*; | |
import processing.pdf.*; | |
final color BACKGROUND_COLOR = color(240); |
This file contains hidden or 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
// search text | |
$key = wp_specialchars($s, 1); | |
if ( have_posts() ) : | |
<p>The following pages contain your search term, <strong>"<?php echo $key;?>"</strong>.</p> | |
// date comparison | |
// if date value is greater than yesterday's value | |
if( strtotime($date) > time()-86400 ){ | |
//do stuff | |
} |
This file contains hidden or 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
/* Display Background URLs */ | |
function sidebar_feature( $post ) { | |
// Use nonce for verification | |
wp_nonce_field( plugin_basename( __FILE__ ), 'myplugin_noncename' ); | |
$sidebar_feature = get_post_meta($post->ID, 'sidebar_feature', true); | |
?> |
NewerOlder