One-time Dependency Setup/Configuration
wget https://getcomposer.org/download/1.1.0/composer.phar && chmod +x composer.phar && sudo mv /usr/local/bin/composer && composer self-update
| This is just a test. |
| <?php | |
| /** | |
| * Plugin Name: Speed Optimizer - Google Site Kit Exclude | |
| * Description: Helper plugin that excludes all Google Site Kit assets from SG optimizations. | |
| * Author: Evan Mattson | |
| * Version: 1.0.0 | |
| * Requires PHP: 7.4 | |
| */ | |
| // Prevent direct access. |
| <?php | |
| /** | |
| * Plugin Name: Site Kit by Google – IPv6 Support Helper | |
| * Description: Helper plugin for sites impacted by IPv6 connection issues. | |
| * Author: Evan Mattson | |
| * Version: 0.2 | |
| */ | |
| add_action( | |
| 'plugins_loaded', |
| <?php | |
| /** | |
| * For use with Amazon S3 and CloudFront by Delicious Brains | |
| * | |
| * Upload this file to your installation and trigger it with WP-CLI: | |
| * wp eval-file as3cf-upload-missing-media-library-items-to-s3.php | |
| */ | |
| global $as3cf; |
| <?php | |
| /** | |
| * Filter for GravityForms to group select field choices by a special "optgroup" choice. | |
| * | |
| * Simply add a new choice with a value of 'optgroup' to the dropdown to start a group of options. | |
| * All following choices will be grouped under it using its label for the group. | |
| * Any number of groups can be created, as each optgroup choice will start a new group. | |
| * Supports field placeholder & ungrouped options, but must be before the first group. | |
| * | |
| * This snippet can be added to your theme's functions.php, or a custom plugin. |
| <?php // Save this in a file called "ray.php" | |
| return [ | |
| /* | |
| * The host used to communicate with the Ray app. | |
| */ | |
| 'host' => 'host.docker.internal', | |
| /* | |
| * The port number used to communicate with the Ray app. |
| describe( 'level 0', () => { | |
| beforeAll( () => console.log( 'beforeAll', 'Level 0' ) ); | |
| afterAll( () => console.log( 'afterAll', 'Level 0' ) ); | |
| beforeEach( () => console.log( 'beforeEach', 'Level 0' ) ); | |
| afterEach( () => console.log( 'afterEach', 'Level 0' ) ); | |
| describe( 'level 1A', () => { | |
| beforeAll( () => console.log( 'beforeAll', 'Level 1A' ) ); | |
| afterAll( () => console.log( 'afterAll', 'Level 1A' ) ); | |
| beforeEach( () => console.log( 'beforeEach', 'Level 1A' ) ); |
| <?php | |
| /** | |
| * Plugin Name: Environment Configuration | |
| * Description: Enforces environment-specific settings for the current environment. | |
| */ | |
| namespace App\Environment; | |
| function disable_plugins( $disable_plugins ) { | |
| add_filter( |
Suppose you're opening an issue, pull request, or just leaving a comment and you have a lot of supporting content to provide, such as:
To optimize readability, wrap it in a `` tag!