Characters that can attach to other units, grouped by the slot they fill.
Leaders
| { | |
| "$schema": "https://playground.wordpress.net/blueprint-schema.json", | |
| "preferredVersions": { | |
| "php": "8.5", | |
| "wp": "latest" | |
| }, | |
| "landingPage": "/?name=react-plugin-demo", | |
| "steps": [ | |
| { | |
| "step": "login", |
| <?php | |
| /** | |
| * Plugin Name: Outbound Firewall | |
| * Description: Blocks all outgoing HTTP requests and email unless the destination domain is on the allowlist. Logs blocked attempts for admin review under Tools → Outbound Firewall. | |
| * Version: 1.0.0 | |
| */ | |
| if ( ! defined( 'ABSPATH' ) ) { | |
| exit; | |
| } |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Conversation Log</title> | |
| <script src="https://cdn.jsdelivr.net/npm/marked@15/marked.min.js"></script> | |
| <style> | |
| * { box-sizing: border-box; } | |
| body { |
A comprehensive rules reference for answering rules questions. Covers all major rules topics from the Core Rules PDF. Section numbers in parentheses reference the original document (e.g., 01.01).
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| DOMAIN="${1:-example.com}" | |
| RELEASE="${CC_RELEASE:-cc-main-2026-jan-feb-mar}" | |
| CACHE="${HOME}/.cache/cc-backlinks/${RELEASE}" | |
| BASE="https://data.commoncrawl.org/projects/hyperlinkgraph/${RELEASE}/domain" | |
| VERTICES="${CACHE}/domain-vertices.txt.gz" | |
| EDGES="${CACHE}/domain-edges.txt.gz" |
| <?php | |
| /** | |
| * Kadence Elements Preview Fix | |
| * | |
| * This plugin fixes the content for Kadence Elements previews in | |
| * Gutenberg. When previewing, the unsaved content is spliced into | |
| * $GLOBALS['post'], but Kadence runs pulling the saved content | |
| * instead. This plugin ensures that the correct content is | |
| * displayed in the preview. | |
| */ |
| <?php | |
| // Usage: Drop this file into `wp-content/mu-plugins/` and it will disable logins and authentication. | |
| namespace WPFreeze; | |
| // In addition, the salts should be temporarily rotated in wp-config.php to invalidate existing sessions. | |
| define( 'WP_FREEZE_MESSAGE', 'This site is currently frozen for maintenance. Please check back later.' ); |
| <?php | |
| // Plugin Name: George Load Time Debugging | |
| function qm_track_current_action( $suffix = '' ) { | |
| static $last_action = null; | |
| if ( $last_action ) { | |
| do_action( 'qm/stop', $last_action ); | |
| } | |
| if ( function_exists( 'current_action' ) ) { |
| <?php | |
| /** | |
| * Plugin name: Georgestephanis Custom CSS | |
| */ | |
| namespace Georgestephanis\CustomCSS; | |
| add_action( 'admin_menu', function() { | |
| add_theme_page( |