Source: Make WordPress: CLI

  • Version 0.11.2 is out

    This is a minor releaseMinor Release A set of releases or versions having the same minor version number may be collectively referred to as .x , for example version 5.2.x to refer to versions 5.2, 5.2.1, 5.2.3, and all other versions in the 5.2 (five dot two) branch of that software. Minor Releases often make…

  • Version 0.11.1 released

    This is a minor releaseMinor Release A set of releases or versions having the same minor version number may be collectively referred to as .x , for example version 5.2.x to refer to versions 5.2, 5.2.1, 5.2.3, and all other versions in the 5.2 (five dot two) branch of that software. Minor Releases often make…

  • Version 0.11 has arrived.

    It’s been two months since the last major release. We didn’t want to wait any longer to show you all the goodies that we packed into this version. Import content from WXR files A significant addition in this release is the wp import command, which is the yin to wp export‘s yang. It’s an iteration…

  • Version 0.10.2 released

    This is a minor releaseMinor Release A set of releases or versions having the same minor version number may be collectively referred to as .x , for example version 5.2.x to refer to versions 5.2, 5.2.1, 5.2.3, and all other versions in the 5.2 (five dot two) branch of that software. Minor Releases often make…

  • Version 0.10.1 released

    This is a minor, bugxfix-only release. Changelog Commands: improved –version handling for wp plugin and wp theme subcommands updated man page for wp post get improved .travis.xml file generated by wp scaffold plugin-tests Internals: show warning if a URLURL A specific web address of a website or web page on the Internet, such as a…

  • Version 0.10 is out!

    In the last two and a half months, we’ve added a ton of new features, fixed many bugs and improved our functional test suite. New installer You can still install WP-CLIWP-CLI WP-CLI is the Command Line Interface for WordPress, used to do administrative and development tasks in a programmatic way. The project page is http://wp-cli.org/…

  • Scaffolding Custom Post Types and Taxonomies

    Custom post types and custom taxonomies are the building blocks for advanced functionality. Most of the time, the code for registering them is either copy+pasted from somewhere or it’s saved as a snippet in your text editor. Now you can do this with WP-CLIWP-CLI WP-CLI is the Command Line Interface for WordPress, used to do…

  • Version 0.9 released

    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-CLIWP-CLI WP-CLI is the Command Line Interface for WordPress, used…

  • Edit WordPress Posts in Vim or Emacs or Whatever

    A few years ago, I came across a very interesting project by Joseph Scott, called PressFS; it exposed WordPress posts as plain text files on your filesystem. This allowed you to use all your favorite command-line tools to manipulate these posts, including editing their content in your favorite text editor. With WP-CLI 0.9.0-betaBeta A pre-release…

  • Easily Set Up Unit Tests For Your Plugin

    One of the reasons so few people take the time to write unit tests for plugins they author is that it’s a chore to set everything up. Besides installing PHPUnit, you also have to set up the WordPress testing library, as well as the actual pluginPlugin A plugin is a piece of software containing a…