Wp-cli

De MochilaWiki
Revisão de 14h16min de 1 de dezembro de 2015 por Banto Palmarino (discussão | contribs)
Ir para navegaçãoIr para pesquisar

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

listando temas

wp theme list --allow-root

definido um tema como padrão

wp theme activate rttheme17 --allow-root

remove um tema

wp theme delete twentyfifteen --allow-root

Referências