This file contains hidden or 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
| <html> | |
| <head> | |
| <title></title> | |
| <style type="text/css">/* ... */ | |
| /*--- Preheader declaration in style block in addition to inline for Outlook */ | |
| .preheader { display:none !important; visibility:hidden; opacity:0; color:transparent; height:0; width:0; } | |
| </style> | |
| </head> | |
| <body> | |
| <p><span class="preheader" style="display: none !important; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;"><span class="preheader" style="display: none !important; visibility: hidden; opacity: 0; color: transparent; height: 0; width: 0;"> </span>Descubra. Cortesia minha ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏</span> |
This file contains hidden or 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
| # --- Sync skill directories from .agents/skills to .copilot/skills --- | |
| COPILOT_SKILLS="/Users/mac/.copilot/skills" | |
| AGENTS_SKILLS="/Users/mac/.agents/skills" | |
| if [ -d "$AGENTS_SKILLS" ]; then | |
| for skill_dir in "$AGENTS_SKILLS"/*/; do | |
| [ -d "$skill_dir" ] || continue | |
| dir_name=$(basename "$skill_dir") | |
| [[ "$dir_name" == .* ]] && continue |
This file contains hidden or 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
| { | |
| "landingPage": "/wp-admin", | |
| "preferredVersions": { | |
| "wp": "https://playground.wordpress.net/plugin-proxy.php?url=https://wordpress.org/wordpress-4.6.30.zip", | |
| "php": "7.4" | |
| }, | |
| "features": { | |
| "networking": true | |
| }, | |
| "steps": [ |
This file contains hidden or 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
| # --- Sync commands from all subfolders in .claude/commands --- | |
| GEMINI_WORKFLOWS="/Users/mac/.gemini/antigravity/global_workflows" | |
| CLAUDE_COMMANDS="/Users/mac/.claude/commands" | |
| if [ -d "$CLAUDE_COMMANDS" ]; then | |
| # Iterate through each subfolder (1 level deep) | |
| for cmd_dir in "$CLAUDE_COMMANDS"/*/; do | |
| [ -d "$cmd_dir" ] || continue | |
| prefix=$(basename "$cmd_dir") |
A precise, no-nonsense blueprint for orchestrating autonomous and semi-autonomous coding agents to plan, scaffold, implement, test, and ship a production‑grade WordPress plugin.
This document defines the agents, tools, workflows, constraints, and acceptance criteria for using an agentic coding system ("Codex") to create and maintain a WordPress plugin. It is optimized for real, shippable code, not demos.
This file contains hidden or 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
| /** | |
| * | |
| * Styles matching the provided website mockup. | |
| * | |
| * NOTES: | |
| * – We'll use WP's native custom properties wherever possible. | |
| * – The usage of `!important`, although a bad practice, is unavoidable in the situations it was used. | |
| */ | |
| /* Define custom properties where there's no equivalent in WordPress. */ |
This file contains hidden or 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
| { | |
| "name": "Branda", | |
| "url": "https:\/\/wpmudev.com\/plugins\/ultimate-branding", | |
| "version": "3.4.23", | |
| "timestamp": 1745721211, | |
| "date": "2025-04-27T02:33:31+00:00", | |
| "activate_module": { | |
| "front-end\/site-status-page.php": "yes" | |
| }, | |
| "modules": { |
This file contains hidden or 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 // Ignore this line if your functions.php already include it. | |
| function register_book_author_taxonomy() { | |
| $labels = array( | |
| 'name' => 'Book Authors', | |
| 'singular_name' => 'Book Author', | |
| 'menu_name' => 'Book Authors', | |
| 'all_items' => 'All Book Authors', | |
| 'edit_item' => 'Edit Book Author', | |
| 'view_item' => 'View Book Author', | |
| 'update_item' => 'Update Book Author', |
This file contains hidden or 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 | |
| // Add Shortcode | |
| function subform() { | |
| // Get the current user | |
| $current_user = wp_get_current_user(); | |
| // Check if user is logged in and get the nickname | |
| if ($current_user->exists()) { | |
| $user_display_name = $current_user->nickname; | |
| // If nickname is empty, fall back to display_name |
NewerOlder