Skip to content

Instantly share code, notes, and snippets.

View hlaporthein's full-sized avatar
💭
I may be slow to respond.

hlaporthein hlaporthein

💭
I may be slow to respond.
View GitHub Profile
@hlaporthein
hlaporthein / gulpfile.js
Created June 1, 2018 15:23 — forked from itzikbenh/gulpfile.js
Gulp configuration for my WordPress theme development
/*
Create package.json and install all packages:
1. npm init
2. npm install -g gulp
3. npm install gulp gulp-babel babel-preset-es2015 gulp-concat gulp-csso gulp-rename gulp-sass gulp-uglify gulp-watch browser-sync --save-dev
Expected file structure:
./css/src/*.scss
@hlaporthein
hlaporthein / onViewport.js
Created March 29, 2018 00:31 — forked from eltonmesquita/onViewport.js
A simple jQuery function that adds a class when the target(s) is in the viewport
function onViewport(el, elClass, offset, callback) {
/*** Based on http://ejohn.org/blog/learning-from-twitter/ ***/
var didScroll = false;
var this_top;
var height;
var top;
if(!offset) { var offset = 0; }
$(window).scroll(function() {
@hlaporthein
hlaporthein / gist:fe6a99b3edf751786f33662681e57414
Last active January 25, 2018 04:00
WordPress: WP_Query $args Ultimate Reference
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.com
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query
* Source: http://core.trac.wordpress.org/browser/tags/3.3.1/wp-includes/query.php
*/
$args = array(
@hlaporthein
hlaporthein / filter_column.txt
Created August 11, 2017 03:55
Filter WordPress Column Reference List
http://www.codesynthesis.co.uk/tutorials/filtering-custom-post-types-by-post-meta-in-the-wordpress-admin-area
https://www.ractoon.com/2016/11/wordpress-custom-sortable-admin-columns-for-custom-posts/
@hlaporthein
hlaporthein / meta_key_rename.sql
Created June 26, 2017 07:56
Multi meta_key rename in wordpress
UPDATE `mcu_postmeta` SET `meta_key` = '_consumer_rights' WHERE `meta_key` = '_3violated'