WordPress – how to install wp-cli on Ubuntu

MacBook avec code sur un bureau

Start by downloading wp-cli curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar Then give it the right to be executed chmod +x wp-cli.phar Then move it to /usr/local/bin to be able to use the wp command sudo mv wp-cli.phar /usr/local/bin/wp To use the command, simply go into the folder containing the WordPress installation $ wp NAME Wp DESCRIPTION Manage WordPress … Read more

Install WordPress and plugins with Composer

MacBook avec code sur un bureau

Installing WordPress via Composer has often been difficult, fortunately there is now a solution! WordPress On GitHub there is a project that is updated every 15 minutes with the latest version of WordPress. It is also the most used. https://github.com/johnpbloch/wordpress In the composer.json just indicate the project name. In this example, we can also indicate … Read more