Source: Make WordPress: CLI

  • Config

    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/ https://make.wordpress.org/cli/ has a series of global parameters (e.g. –path=<path> and –user=<user>) which work with all commands. They are called global parameters because they affect how WP-CLI interacts with WordPress, and…

  • WordCamp Contributor Day

    Welcome to WordCampWordCamp WordCamps are casual, locally-organized conferences covering everything related to WordPress. They’re one of the places where the WordPress community comes together to teach one another what they’ve learned throughout the year and share the joy. Learn more. Contributor DayContributor Day Contributor Days are standalone days, frequently held before or after WordCamps but…

  • Documentation Standards

    To promote similarity and consistency between 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/ https://make.wordpress.org/cli/ commands, we’ve produced these documentation standards we’d encourage you to follow. Commonality is a key component of usability, because it reduces the mental…

  • Default doctor diagnostic checks

    Although it’s power comes from its ability to be customized, wp doctor includes a number of default diagnostic checks considered to be recommendations for production websites. Use wp doctor list to view these default checks: name description autoload-options-size Warns when autoloaded options size exceeds threshold of 900 kb. constant-savequeries-falsy Confirms expected state of the SAVEQUERIES…

  • Customize doctor diagnostic checks

    Even though wp doctor comes with a number of default diagnostic checks, it’s designed with extensibility at its coreCore Core is the set of software required to run WordPress. The Core Development Team builds WordPress.. Checks are defined at runtime, read from a doctor.yml configuration file naming each check with its options. doctor.yml format Let’s…

  • Bug Reports

    Think you’ve found a bug? We’d love for you to help us get it fixed. Before you create a new issue, you should: Search existing issues to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version. Check our documentation on common issues and their fixes. It’s…

  • Code Review

    Code review is a coreCore Core is the set of software required to run WordPress. The Core Development Team builds WordPress. part of the 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/ https://make.wordpress.org/cli/ project’s software development workflow. Code…

  • Committers Credo

    Some people have write access to 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/ https://make.wordpress.org/cli/ repositories. These people are identified in the following teams: maintainers – Project leadership committers – Trusted contributors This “Committers credo” is a living…

  • Behat Steps

    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/ https://make.wordpress.org/cli/ makes use of a Behat-based testing framework and provides a set of custom step definitions to write feature tests. Behat steps documentation is generated from the WP-CLI codebase on…

  • Commands Cookbook

    Creating your own custom 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/ https://make.wordpress.org/cli/ command can be easier than it looks — and you can use wp scaffold package (repo) to dynamically generate everything but the command itself. Overview…