wp-cli doesn’t find and wordpress installation

If no –path is passed, WP-CLI defaults to the current directory and looks for the wp-includes/version.php file. So, make sure that the directory you’re in has such a file: $ ls wp-includes $ cat wp-includes/version.php $ wp core version

How to create a WP-CLI command with $_POST?

The main problem is that your wp_reset_init() method deals with too many things. It’s looking at the $_POST request, it’s performing database queries, and it’s performing redirects. You need to separate your concerns so you end up with a new method which only performs the database reset, and which accepts parameters rather than using $_POST … Read more

WP-CLI get all posts from certain post type and taxonomy term

Assume we have a custom post type movie (slug) and a custom taxonomy cast (slug). 1) To find all movies starring Emily Watson, stored with the term slug emily-watson, we can do: wp post list –post_type=movie –cast=emily-watson to list all her movies. 2) To find all movies featuring Elizabeth Taylor or Richard Burton , stored … Read more

Run WP-CLI using PHP

Regarding the wp –info output, that makes sense. If you don’t have any packages installed (see wp package –help or a global configuration files (wp-cli.yml) then those items would be blank. You can run the wp command from any location. If you’re anywhere within your website’s folder structure it will automatically detect the site you’re … Read more