KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
wp-cli-vhosts
★ 24
Open GitHub ↗
WP-CLI package command for VirtualHost
Download README (.md)
Explore Similar Repositories
graphql-starter-kit
:
A GraphQL server example written in GoLang integrating with Cassandra and MongoDB.
distracted-drivers-tf
:
Starter project for the Kaggle State Farm Distracted Driver Detection Competition
cocos-ui-libgdx
:
a ui library of ligdx with cocostudio 一个cocostudio的ui解析库
nv
:
nv is a programming language supports non-volatile variable and flexible grammar.
ip6
:
IPv6 address helper utilities.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
wp-cli-vhosts
?
Download (.md)
# wp vhosts <sub-command> [](https://travis-ci.org/miya0001/wp-cli-vhosts) Manage multiple WordPress sites in the server. Demo: https://www.youtube.com/watch?v=d0ozf2JmkOg ## Requires * WP-CLI 0.23 or later ## Install ``` $ wp package install miya0001/wp-cli-vhosts:@stable ``` ### Configuration Place `sites` in the `.wp-cli/config.yml`. ``` sites: - /path/to/example.com/www - /path/to/example.org/www - /path/to/example.jp/www ``` http://wp-cli.org/config/ ## Sub commands * wp vhosts core * wp vhosts core language * wp vhosts plugin * wp vhosts theme * wp vhosts add Try `wp help vhosts`. ## Examples See help: ``` $ wp help vhosts ``` Verify WordPress files against WordPress.org's checksums. ``` $ wp vhosts core verify-checksums ``` Update all WordPress. ``` $ wp vhosts core update ``` Update all plugins in all WordPress sites. ``` $ wp vhosts plugin update --all ``` Install jetpack into all WordPress sites. ``` $ wp vhosts plugin install jetpack ``` ## How to contribute ### Clone this repository ``` $ git clone git@github.com:miya0001/wp-cli-vhosts.git ``` ### Manually activate Add following into your `~/.wp-cli/config.yml`. ``` require: - commands/wp-cli-vhosts/cli.php ``` ### Automated testing ``` $ npm run setup $ npm test ```