Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions _includes/cmd-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
<td><a href="https://github.com/wp-cli/wp-cli/blob/master/php/commands/home.php">home</a></td>
<td>Open the wp-cli homepage in your browser.</td>
</tr>
<tr>
<td><a href="https://github.com/wp-cli/wp-cli/blob/master/php/commands/media.php">media</a></td>
<td>Control the media library and its attachments.</td>
</tr>
<tr>
<td><a href="https://github.com/wp-cli/wp-cli/blob/master/php/commands/option.php">option</a></td>
<td>Manage WordPress options.</td>
Expand All @@ -62,6 +66,10 @@
<td><a href="https://github.com/wp-cli/wp-cli/blob/master/php/commands/rewrite.php">rewrite</a></td>
<td>Manage rewrite rules.</td>
</tr>
<tr>
<td><a href="https://github.com/wp-cli/wp-cli/blob/master/php/commands/role.php">role</a></td>
<td>Manage user roles.</td>
</tr>
<tr>
<td><a href="https://github.com/wp-cli/wp-cli/blob/master/php/commands/scaffold.php">scaffold</a></td>
<td>Generate code for post types, taxonomies, etc.</td>
Expand All @@ -74,6 +82,10 @@
<td><a href="https://github.com/wp-cli/wp-cli/blob/master/php/commands/shell.php">shell</a></td>
<td>Interactive PHP console.</td>
</tr>
<tr>
<td><a href="https://github.com/wp-cli/wp-cli/blob/master/php/commands/term.php">term</a></td>
<td>Manage terms.</td>
</tr>
<tr>
<td><a href="https://github.com/wp-cli/wp-cli/blob/master/php/commands/theme.php">theme</a></td>
<td>Manage themes.</td>
Expand Down
2 changes: 1 addition & 1 deletion _includes/param-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<td><code>color: &lt;bool&gt;</code></td>
<td><code>--[no-]color</code></td>
<td><code>"auto"</code></td>
<td>Whether to colozire the output</td>
<td>Whether to colorize the output</td>
</tr>
<tr>
<td><code>debug: &lt;bool&gt;</code></td>
Expand Down
41 changes: 41 additions & 0 deletions _posts/2013-03-20-version-0.9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
layout: post
title: Version 0.9 released
author: scribu
---
Version 0.9.0 is now available.

### New distribution method

The PEAR channel has been abandoned, and replaced with a much simpler distribution method: you download a single Phar archive. Done.

Of course, installing via git is still possible and encouraged, if you want to hack on WP-CLI.

The [front page](/) has up-to-date information about all the supported installation methods.

### Changelog

Commands:

- added `wp role` command
- added `wp term` command
- added [wp post edit](/blog/editing-posts.html)
- added `--edit` flag to `wp post create`
- added `wp scaffold _s`
- added `wp core init-tests`
- made `wp scaffold plugin` generate files for unit tests. see the [blog post](/blog/plugin-unit-tests.html)
- added `--format` parameter to `wp user list`
- made `wp help` work without a WP install
- added `--force` flag to `wp core download`

Internals:

- fixed `--path` argument getting ignored when running `wp core download`
- don't set `WP_ADMIN` to true
- fixed loading error with some `wp-config.php` files
- replaced git submodules with Composer dependencies
- improved functional test coverage and set up [Travis CI builds](https://travis-ci.org/wp-cli/wp-cli)

You can also browse the full list of [resolved issues](https://github.com/wp-cli/wp-cli/issues?milestone=7&state=closed).

Contributors to this release: [danielbachhuber](http://github.com/danielbachhuber), [drrobotnik](http://github.com/drrobotnik), [erwanlr](http://github.com/erwanlr), [goldenapples](http://github.com/goldenapples), [jmslbam](http://github.com/jmslbam), [leewillis77](http://github.com/leewillis77), [nacin](http://github.com/nacin), [nb](http://github.com/nb), [ocean90](http://github.com/ocean90), [scribu](http://github.com/scribu), [sebastiaandegeus](http://github.com/sebastiaandegeus), [taupecat](http://github.com/taupecat).
9 changes: 5 additions & 4 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ title: Command line interface for WordPress

**wp-cli** is a set of command-line tools for managing [WordPress](http://wordpress.org) installations. You can update plugins, set up multisite installs, create posts and much more.

Requirements
============
Minimum Requirements
==========

You'll need **PHP 5.3** or later.

* PHP >= 5.3
* WordPress >= 3.3
All WP-CLI commands are guaranteed to work with **WordPress 3.4** or later. Some commands, like `wp core update`, might work with older versions as well.

Installing
==========
Expand Down