Skip to content

Instantly share code, notes, and snippets.

@adamziel
Created March 23, 2024 00:05
Show Gist options
  • Save adamziel/04d98abef8567755fbf003a4d515ed79 to your computer and use it in GitHub Desktop.
Save adamziel/04d98abef8567755fbf003a4d515ed79 to your computer and use it in GitHub Desktop.
Log in as a user with an editor role
{
"landingPage": "/wp-admin/",
"steps": [
{
"step": "runPHP",
"code": "<?php require '/wordpress/wp-load.php'; $user_id = wp_create_user('myuser', 'mypass', 'myuser@localhost'); (new WP_User($user_id))->set_role('editor');"
},
{
"step": "login",
"username": "myuser",
"password": "mypass"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment