add_action ( 'init', function(){
$menu_locations = [
'off_canvas' => __( 'Off Canvas' )
];
register_nav_menus( $menu_locations );
This file contains 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
########################### | |
# 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 |
This file contains 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
grep -R -E "(?:woo_options\['(.*)'\])" ./ --include='*.php' -ohw |
This file contains 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 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++) { |
This file contains 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 $ = 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 += "| --- | --- | --- |"; |
This file contains 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 | |
/** | |
* 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'; |
This file contains 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 | |
/** | |
* @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}}', |
This file contains 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
## | |
# 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 gist using UIKit 3, Javascript and HTML File Input Element
A Pen by Craig Wayne on CodePen.