Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Last active May 23, 2021 21:23
Show Gist options
  • Select an option

  • Save frankyonnetti/b51a303e706bd759f009bd5ad7d4b04b to your computer and use it in GitHub Desktop.

Select an option

Save frankyonnetti/b51a303e706bd759f009bd5ad7d4b04b to your computer and use it in GitHub Desktop.
WordPress - wp-cli #wordpress #wp-cli

Bookmarks

default JSON for WP-CLI 2.x and PHP 5.4.x


{
    "require": {
        "wp-cli/wp-cli-bundle": "^2.0"
    }
}


Update WP CLI

In composer.json use '>=' to allow for anything above or equal.

'wp-cli/wp-cli': '>=1.5'

Regenerate all thumbnails

$ ../vendor/bin/wp media regenerate --yes


Create User

$ ../vendor/bin/wp user create USERNAME user@example.com 
$ ../vendor/bin/wp user add-role USERNAME administrator
$ ../vendor/bin/wp user update USERNAME --first_name=USER --last_name=NAME

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment