- 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).
View wordle-dictionary
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
[ | |
"aahed", | |
"aalii", | |
"aargh", | |
"aarti", | |
"abaca", | |
"abaci", | |
"abacs", | |
"abaft", | |
"abaka", |
View wordle-list
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
[ | |
"aback", | |
"abase", | |
"abate", | |
"abbey", | |
"abbot", | |
"abhor", | |
"abide", | |
"abled", | |
"abode", |
View gist:feffd0d5b5d969239a0faadec2ef43c7
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
labelColor | |
secondaryLabelColor | |
tertiaryLabelColor | |
quaternaryLabelColor | |
systemFillColor | |
secondarySystemFillColor | |
tertiarySystemFillColor | |
quaternarySystemFillColor |
View dashicon-js-array-alphabetical
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
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' }, |
View dashicons-js-array
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
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' }, |
View wp_auto_install.sh
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
#!/bin/bash | |
# Get the required project variables | |
printf "Project name: " | |
read PROJECT_NAME | |
printf "Project folder name: " | |
read PROJECT_FOLDER | |
printf "Database Name: " |
View Parker Results Cheatsheet.md
View formidable-forms-select.php
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
$forms = FrmForm::get_published_forms(); | |
$choices = array(); | |
foreach ( $forms as $form ) { | |
$choices[$form->id] = $form->name; | |
} | |
// Formidable Forms Select Field |
View customizer-links.php
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
/** | |
* How to link into the WordPress Customizer | |
*/ | |
Simple Link: | |
<a href="<?php echo esc_url( admin_url( 'customize.php' ) ); ?>">Link to Customizer</a> | |
Link to Panel: | |
$query['autofocus[panel]'] = 'nav_menus'; |
View themes-security-config.md
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)
NewerOlder