Skip to content

Instantly share code, notes, and snippets.

View craigiswayne's full-sized avatar
🤘

Craig Wayne craigiswayne

🤘
View GitHub Profile
@craigiswayne
craigiswayne / pi_ngrok.sh
Last active December 13, 2017 22:03
Ngrok on Raspberry PI
###########################
# NGROK DOCS:
# https://ngrok.com/docs
###########################
cd ~/
wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip
unzip ngrok-stable-linux-arm.zip
sudo mv ngrok /usr/local/bin/
ngrok http 80
@craigiswayne
craigiswayne / find_woo_options_used.sh
Last active October 17, 2017 10:17
Find all woo_options used in directory files
grep -R -E "(?:woo_options\['(.*)'\])" ./ --include='*.php' -ohw
@craigiswayne
craigiswayne / snippet.js
Created July 15, 2017 12:16
WordPress Javascript REST API Example
var collection = new wp.api.collections.Posts();
collection.fetch().done(function(response) {
console.log(response);
console.log('| ID | Author | Date | Title |');
console.log('|-------|--------|---------------------|--------|');
for ( var i = 0; i < response.length; i++) {
@craigiswayne
craigiswayne / README.md
Created June 16, 2017 17:18
Create an Off Canvas Menu with WordPress and UIKIT

Create an Off Canvas Menu with WordPress and UIKIT

Add the following to your functions.php file

add_action ( 'init', function(){
  $menu_locations = [
    'off_canvas' => __( 'Off Canvas' )
  ];
  register_nav_menus( $menu_locations );
@craigiswayne
craigiswayne / wp-plugin-audit.js
Created June 8, 2017 10:58
WordPress Plugin Audit Snippet (Markdown)
var $ = jQuery;
var plugin_rows = $("table.wp-list-table.plugins tbody tr").not(".plugin-update-tr");
var plugins = [];
var markdown = "";
if( $(plugin_rows).length > 0 ){
markdown = "| Name | Version | Status |";
markdown += "\n";
markdown += "| --- | --- | --- |";
@craigiswayne
craigiswayne / CW_Comments_Recaptcha.php
Created June 8, 2017 10:49
WordPress Comments Recaptcha
<?php
/**
* Class CWP_Comments_Recaptcha
* Allows you to add recaptcha to WordPress Comments
*/
class CW_Comments_Recaptcha {
const js_url = 'https://www.google.com/recaptcha/api.js';
@craigiswayne
craigiswayne / functions.php
Created June 6, 2017 17:06
WordPress Starter Content and Theme Support
<?php
/**
* @see https://roots.io/using-and-customizing-wordpress-starter-content/
*/
add_action( 'after_setup_theme', function () {
add_theme_support( 'starter-content', [
'options' => [
'show_on_front' => 'page',
'page_on_front' => '{{home}}',
@craigiswayne
craigiswayne / init.sh
Created June 5, 2017 22:41
Manage your json file data via a grunt task
##
# Work in Progress
##
npm init
npm install grunt --save-dev
npm install [email protected] --save-dev
npm install [email protected] --save-dev
touch Gruntfile.js
touch manifest.json

Image Upload Preview

Image Upload Preview gist using UIKit 3, Javascript and HTML File Input Element

A Pen by Craig Wayne on CodePen.

License.