Does wp post delete also delete metadata associated with posts?
In short, yes. However, if you run into an issue like custom fields or media hanging around, you could use: wp post meta delete
In short, yes. However, if you run into an issue like custom fields or media hanging around, you could use: wp post meta delete
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
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
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
mu-plugins don’t get activated. They’re activated just by being in that folder.
If you type wp help post create you will get all the info you need. Example: wp post create –post_type=page –post_status=publish –post_title=”A new page”
Thanks to a tip from milo in the comments above, I looked at this similar question. There is an answer provided by Laurent which basically gets the option using wp-cli, pipes it to an inline php program, makes the adjustments and then pipes it back to wp-cli. I took that idea and generalized it somewhat … Read more
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
Cloning a post via wp-cli is little trickier. It needs two steps: Create a file where save the information of post. Suppose, following command create a file named file.txt from hello post (id 1). In this case file.txt which save on root directory. wp post get 1 > file.txt Create new post from this file. … Read more
The simplest way via wp-cli that comes to mind (while it’s not supported yet as far as I can see) is something like: wp eval “update_option( ‘auto_update_plugins’, array_keys( get_plugins() ) );” that will update the auto_update_plugins option with the array of all plugin files to update. This should probably be extended further to only update … Read more