Skip to content

Instantly share code, notes, and snippets.

View slushman's full-sized avatar

Chris Wilcoxson slushman

View GitHub Profile
@slushman
slushman / gist:feffd0d5b5d969239a0faadec2ef43c7
Last active July 11, 2020 06:14
React Native PlatformColor Names
labelColor
secondaryLabelColor
tertiaryLabelColor
quaternaryLabelColor
systemFillColor
secondarySystemFillColor
tertiarySystemFillColor
quaternarySystemFillColor
@slushman
slushman / wp_auto_install.sh
Last active December 14, 2018 03:11 — forked from nicomollet/wp_auto_install.sh
WP-CLI auto install local development site script
#!/bin/bash
# Get the required project variables
printf "Project name: "
read PROJECT_NAME
printf "Project folder name: "
read PROJECT_FOLDER
printf "Database Name: "
@slushman
slushman / dashicons-js-array
Last active October 29, 2018 20:04
Javascript array of Dashicons.
const dashIcons = [
{ value: 'menu', label: 'Menu' },
{ value: 'dashboard', label: 'Dashboard' },
{ value: 'admin-site', label: 'Admin Site' },
{ value: 'admin-media', label: 'Admin Media' },
{ value: 'admin-page', label: 'Admin Page' },
{ value: 'admin-comments', label: 'Admin Comments' },
{ value: 'admin-appearance', label: 'Admin Appearance' },
{ value: 'admin-plugins', label: 'Admin Plugins' },
{ value: 'admin-users', label: 'Admin Users' },
export default [
{ value: 'admin-appearance', label: 'Admin Appearance' },
{ value: 'admin-collapse', label: 'Admin Collapse' },
{ value: 'admin-comments', label: 'Admin Comments' },
{ value: 'admin-generic', label: 'Admin Generic' },
{ value: 'admin-home', label: 'Admin Home' },
{ value: 'admin-links', label: 'Admin Links' },
{ value: 'admin-media', label: 'Admin Media' },
{ value: 'admin-network', label: 'Admin Network' },
{ value: 'admin-page', label: 'Admin Page' },
@slushman
slushman / sane-inline-svg
Last active July 26, 2018 20:20
Sane Inline SVG
/**
* Returns the requested SVG icon.
*
* Returns FALSE if $svg is not set.
*
* @param string $svg The name of the SVG icon
* @return mixed The SVG icon
*/
function prefix_get_svg( $svg ) {
@slushman
slushman / themes-security-config.md
Created May 2, 2016 15:31
iThemes Security Configuration

Table of Contents

  • Settings
    • [Global] (#global)
    • [404 Detection] (#404)
    • [Away Mode] (#away)
    • [Banned Users] (#banned)
    • [Brute Force Protection] (#brute)
    • [Backup DB] (#backupdb)
    • [File Change Detection] (#files)
  • [Hide Login] (#hidelogin)
@slushman
slushman / remove-buddybar
Created April 15, 2015 03:57
Remove BuddyPress Admin Bar
/*
Add this line to your wp-config.php file. I put it right above the "Authentication Unique Keys and Salts." comment block.
*/
/** Disable the WP Admin Bar */
define('BP_DISABLE_ADMIN_BAR', true);
@slushman
slushman / Parker Results Cheatsheet.md
Last active October 20, 2016 14:54
Cheatsheet for the results from Parker.
  • Total Stylesheets
    • The quantity of stylesheets it examined.
  • Total Stylesheet Size
    • Size in bytes of the stylesheet(s)
    • Ideal: no real ideal, but smaller is better.
  • Total Rules
    • The quantity of CSS rules in the stylesheet(s).
    • Ideal: no real ideal, but a smaller number here means a simpler stylesheet.
  • Total Selectors
    • The quantity of selectors in the stylesheet(s).
@slushman
slushman / formidable-forms-select.php
Created July 18, 2016 18:14
WordPress Customizer select control with published Formidable forms.
$forms = FrmForm::get_published_forms();
$choices = array();
foreach ( $forms as $form ) {
$choices[$form->id] = $form->name;
}
// Formidable Forms Select Field
$homeposts = yourtheme_get_posts( 'post', array( 'category_name' => 'name_of_the_category', 'posts_per_page' => 1 ), 'homepage' );
foreach ( $homeposts->posts as $homepost ) {
// process each post here
}
/**
* Returns a post object of the requested post type