Skip to content

Commit

Permalink
Reindex and reformat Blueprints
Browse files Browse the repository at this point in the history
  • Loading branch information
deployment_bot committed Apr 15, 2024
1 parent 82d46d7 commit 6de4ffc
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 48 deletions.
6 changes: 3 additions & 3 deletions GALLERY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Here's the list of all the community Blueprints submitted to this repository. Se

| Title | Preview | Source |
| ----- | ------- | ------ |
| Custom Post Type: Books | [Preview](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/adamziel/blueprints/trunk/blueprints/custom-post/blueprint.json) | [Source](https://github.com/adamziel/blueprints/blob/trunk/blueprints/custom-post/blueprint.json) |
| Latest Gutenberg plugin | [Preview](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/adamziel/blueprints/trunk/blueprints/latest-gutenberg/blueprint.json) | [Source](https://github.com/adamziel/blueprints/blob/trunk/blueprints/latest-gutenberg/blueprint.json) |
| Grid Variations Experiments enabled | [Preview](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/adamziel/blueprints/trunk/blueprints/grid-variations/blueprint.json) | [Source](https://github.com/adamziel/blueprints/blob/trunk/blueprints/grid-variations/blueprint.json) |
| Display Admin Notice | [Preview](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/adamziel/blueprints/trunk/blueprints/admin-notice/blueprint.json) | [Source](https://github.com/adamziel/blueprints/blob/trunk/blueprints/admin-notice/blueprint.json) |
| Latest Gutenberg plugin | [Preview](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/adamziel/blueprints/trunk/blueprints/latest-gutenberg/blueprint.json) | [Source](https://github.com/adamziel/blueprints/blob/trunk/blueprints/latest-gutenberg/blueprint.json) |
| Use wp-cli command to add posts | [Preview](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/adamziel/blueprints/trunk/blueprints/posts-via-wp-cli/blueprint.json) | [Source](https://github.com/adamziel/blueprints/blob/trunk/blueprints/posts-via-wp-cli/blueprint.json) |
| Grid Variations Experiments enabled | [Preview](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/adamziel/blueprints/trunk/blueprints/grid-variations/blueprint.json) | [Source](https://github.com/adamziel/blueprints/blob/trunk/blueprints/grid-variations/blueprint.json) |
| Custom Post Type: Books | [Preview](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/adamziel/blueprints/trunk/blueprints/custom-post/blueprint.json) | [Source](https://github.com/adamziel/blueprints/blob/trunk/blueprints/custom-post/blueprint.json) |

7 changes: 2 additions & 5 deletions blueprints/admin-notice/blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
"title": "Display Admin Notice ",
"description": "Blueprint to add a tiny mu-plugin and display an admin notice",
"author": "bph",
"categories": [
"Admin",
"notices"
]
"categories": ["Admin", "notices"]
},
"landingPage": "/wp-admin/plugins.php",
"steps": [
Expand All @@ -22,4 +19,4 @@
"data": "<?php add_action('admin_notices', function() { echo '<div class=\"notice notice-info is-dismissible\"><p>Hello from Playground.</p></div>'; });"
}
]
}
}
7 changes: 2 additions & 5 deletions blueprints/custom-post/blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
"title": "Custom Post Type: Books",
"description": "Blueprint that added a custom post type to playground",
"author": "bph",
"categories": [
"Content",
"CPT"
]
"categories": ["Content", "CPT"]
},
"landingPage": "/wp-admin/",
"steps": [
Expand All @@ -31,4 +28,4 @@
"pluginPath": "books/books.php"
}
]
}
}
7 changes: 2 additions & 5 deletions blueprints/grid-variations/blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
"title": "Grid Variations Experiments enabled",
"author": "bph",
"description": "Blueprint example to toggle on enable a feature from the Experiments page in Gutenberg plugin",
"categories": [
"Gutenberg",
"Experiments"
]
"categories": ["Gutenberg", "Experiments"]
},
"landingPage": "/wp-admin/site-editor.php",
"steps": [
Expand All @@ -31,4 +28,4 @@
"code": "<?php require '/wordpress/wp-load.php'; update_option( 'gutenberg-experiments', array( 'gutenberg-grid-interactivity' => true ) );"
}
]
}
}
10 changes: 3 additions & 7 deletions blueprints/latest-gutenberg/blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
"title": "Latest Gutenberg plugin",
"author": "zieladam",
"description": "A preview of the latest version of the Gutenberg plugin.",
"categories": [
"plugins"
]
"categories": ["plugins"]
},
"plugins": [
"gutenberg"
]
}
"plugins": ["gutenberg"]
}
7 changes: 2 additions & 5 deletions blueprints/posts-via-wp-cli/blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
"title": "Use wp-cli command to add posts",
"description": "Blueprint example to add posts via a wp-cli command.",
"author": "bph",
"categories": [
"Content",
"wpcli"
]
"categories": ["Content", "wpcli"]
},
"landingPage": "/wp-admin/edit.php",
"steps": [
Expand All @@ -21,4 +18,4 @@
"command": "wp post generate --count=12 --post_type=post --post_date=1999-01-04"
}
]
}
}
36 changes: 18 additions & 18 deletions index.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
{
"blueprints/custom-post/blueprint.json": {
"title": "Custom Post Type: Books",
"description": "Blueprint that added a custom post type to playground",
"blueprints/grid-variations/blueprint.json": {
"title": "Grid Variations Experiments enabled",
"author": "bph",
"description": "Blueprint example to toggle on enable a feature from the Experiments page in Gutenberg plugin",
"categories": [
"Content",
"CPT"
]
},
"blueprints/latest-gutenberg/blueprint.json": {
"title": "Latest Gutenberg plugin",
"author": "zieladam",
"description": "A preview of the latest version of the Gutenberg plugin.",
"categories": [
"plugins"
"Gutenberg",
"Experiments"
]
},
"blueprints/admin-notice/blueprint.json": {
Expand All @@ -25,6 +17,14 @@
"notices"
]
},
"blueprints/latest-gutenberg/blueprint.json": {
"title": "Latest Gutenberg plugin",
"author": "zieladam",
"description": "A preview of the latest version of the Gutenberg plugin.",
"categories": [
"plugins"
]
},
"blueprints/posts-via-wp-cli/blueprint.json": {
"title": "Use wp-cli command to add posts",
"description": "Blueprint example to add posts via a wp-cli command.",
Expand All @@ -34,13 +34,13 @@
"wpcli"
]
},
"blueprints/grid-variations/blueprint.json": {
"title": "Grid Variations Experiments enabled",
"blueprints/custom-post/blueprint.json": {
"title": "Custom Post Type: Books",
"description": "Blueprint that added a custom post type to playground",
"author": "bph",
"description": "Blueprint example to toggle on enable a feature from the Experiments page in Gutenberg plugin",
"categories": [
"Gutenberg",
"Experiments"
"Content",
"CPT"
]
}
}

0 comments on commit 6de4ffc

Please sign in to comment.