Last active
September 24, 2025 13:32
-
-
Save getdave/3fb8a7d6253c2cbbd022302cc2847f3b to your computer and use it in GitHub Desktop.
Nav Testing Blueprint
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
| { | |
| "$schema": "https://playground.wordpress.net/blueprint-schema.json", | |
| "meta": { | |
| "title": "Navigation Block Simplified Editing", | |
| "description": "Testing Nav", | |
| "author": "automattic" | |
| }, | |
| "landingPage": "/wp-admin/site-editor.php?canvas=edit", | |
| "preferredVersions": { | |
| "php": "8.3", | |
| "wp": "latest" | |
| }, | |
| "login": true, | |
| "steps": [ | |
| { | |
| "step": "resetData" | |
| }, | |
| { | |
| "step": "writeFile", | |
| "path": "/wordpress/wp-content/mu-plugins/rewrite.php", | |
| "data": "<?php /* Use pretty permalinks */ add_action( 'after_setup_theme', function() { global $wp_rewrite; $wp_rewrite->set_permalink_structure('/%postname%/'); $wp_rewrite->flush_rules(); } );" | |
| }, | |
| { | |
| "step": "importWxr", | |
| "file": { | |
| "resource": "url", | |
| "url": "https://gist.githubusercontent.com/getdave/320a662fd94c9f70408e267a7bc3ffc8/raw/" | |
| } | |
| }, | |
| { | |
| "step": "wp-cli", | |
| "command": "wp post generate --count=30 --post_type=page" | |
| }, | |
| { | |
| "step": "wp-cli", | |
| "command": "wp post create --post_type=wp_navigation --post_title='Test Navigation Menu' --post_status=publish --post_content='<!-- wp:navigation-link {\"label\":\"Home\",\"type\":\"page\",\"id\":8,\"url\":\"/home/\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"About\",\"type\":\"page\",\"id\":9,\"url\":\"/about/\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-submenu {\"label\":\"Services\",\"type\":\"page\",\"id\":12,\"url\":\"/services/\",\"kind\":\"post-type\"} -->\n<!-- wp:navigation-link {\"label\":\"Web Design\",\"type\":\"page\",\"id\":14,\"url\":\"/web-design/\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"SEO Optimisation\",\"type\":\"page\",\"id\":21,\"url\":\"https://playground.wordpress.net/scope:determined-chic-lake/services/seo-optimisation/\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Social Media\",\"type\":\"page\",\"id\":23,\"url\":\"https://playground.wordpress.net/scope:determined-chic-lake/services/social-media/\",\"kind\":\"post-type\"} /-->\n<!-- /wp:navigation-submenu -->\n\n<!-- wp:navigation-link {\"label\":\"Blog\",\"type\":\"page\",\"id\":17,\"url\":\"/blog/\",\"kind\":\"post-type\"} /-->\n\n<!-- wp:navigation-link {\"label\":\"Contact\",\"type\":\"page\",\"id\":19,\"url\":\"/contact/\",\"kind\":\"post-type\"} /-->'" | |
| }, | |
| { | |
| "step": "runPHP", | |
| "code": "<?php\nrequire_once '/wordpress/wp-load.php'; update_option( 'gutenberg-experiments', array( 'gutenberg-content-only-pattern-insertion' => true ) );" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment