Mudanças entre as edições de "Wp-cli"

De MochilaWiki
Ir para navegaçãoIr para pesquisar
Linha 23: Linha 23:
 
Referências
 
Referências
 
* http://wp-cli.org/
 
* http://wp-cli.org/
* http://wp-cli.org/commands/theme/update/
 
* http://wp-cli.org/commands/plugin/update/
 

Edição das 14h11min de 1 de dezembro de 2015

baixando wp-cli

curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
chmod +x wp-cli.phar
mv wp-cli.phar /usr/local/bin/wp

instalando um plugin

wp plugin install hello-dolly

atualiza o core

php wp-cli.phar --path=/home/jmcultural/www/ core update

atualiza todos os plugins

php wp-cli.phar --path=/home/jmcultural/www/ plugin update --all

Referências