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 / 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'
@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 / 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 / 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 / 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 / scopes.txt
Created June 22, 2018 04:13 — forked from iambibhas/scopes.txt
Sublime Text 2: Snippet scopes
Here is a list of scopes to use in Sublime Text 2 snippets -
ActionScript: source.actionscript.2
AppleScript: source.applescript
ASP: source.asp
Batch FIle: source.dosbatch
C#: source.cs
C++: source.c++
Clojure: source.clojure
CoffeeScript: source.coffee
@hlaporthein
hlaporthein / .gitignore
Created October 17, 2018 22:47 — forked from salcode/.gitignore
See https://salferrarello.com/wordpress-gitignore/ for the latest version of my WordPress .gitignore file
# -----------------------------------------------------------------
# .gitignore for WordPress
# Bare Minimum Git
# http://ironco.de/bare-minimum-git/
# ver 20150227
#
# This file is tailored for a WordPress project
# using the default directory structure
#
# This file specifies intentionally untracked files to ignore
@hlaporthein
hlaporthein / remove-node&npm.bash
Last active March 6, 2019 08:15
remove Node & NPM commands
rm -rf ~/.npmrc
rm -rf ~/.npm
rm -rf ~/.node-gyp
rm -rf ~/.node_repl_history
rm -rf ~/node-modules
rm -rf ~/.npm-global
rm -rf ~/.npm
rm -rf ~/.npmrc
rm -rf ~/global-modules
rm -rf ~/npm-global
@hlaporthein
hlaporthein / .bash_profile
Created March 14, 2019 06:25 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@hlaporthein
hlaporthein / nginx.conf
Created March 11, 2020 07:16 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048