Skip to content

Instantly share code, notes, and snippets.

@akirk
Created March 7, 2024 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akirk/29626a7b2e6e85b64c383ea540166f38 to your computer and use it in GitHub Desktop.
Save akirk/29626a7b2e6e85b64c383ea540166f38 to your computer and use it in GitHub Desktop.
{
"landingPage": "/wp-admin/",
"preferredVersions": {
"php": "8.0",
"wp": "latest"
},
"steps": [
{
"step": "login",
"username": "admin",
"password": "password"
},
{
"step": "installPlugin",
"pluginZipFile": {
"resource": "url",
"url": "https://codeload.github.com/Automattic/tour/zip/refs/heads/restrict-by-url"
}
},
{
"step": "runPHP",
"code": "<?php require_once 'wordpress/wp-load.php'; wp_insert_post(array('post_title' => 'Test Tour', 'post_type' => 'tour', 'post_content' => '{}', 'post_status' => 'publish')); ?>"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment