How do I enable the WordPress CLI (wp-cli) on my hosting account? Skriv ut

  • 0

You can install the WordPress CLI (wp-cli) on any hosting plan by following these instructions:
  1. Connect to your hosting plan via SSH

  2. Once connected run the following command in your SSH terminal: curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar

  3. The phar file needs to be executable so we'll chmod it by typing: chmod +x wp-cli.phar

  4. Now that the wp-cli is installed we'll modify your .bashrc file to respect the wp command. To do this, type the following in your SSH terminal: alias wp='~/wp-cli.phar'

  5. Next type the following command in your terminal: echo "alias wp='~/wp-cli.phar'" >> .bashrc

  6. Lastly we'll use the source command to make sure bash initializes properly: source .bashrc
You should now be able to change to your active Wordpress installation directory and use the wp command.

Hjälpte svaret dig?

«Tillbaka

Ready to get started? Build your site from
$2.24/mo
GET STARTED NOW