Alain Schlesser
Alain Schlesser
@Kaos-Industries This is not a problem of WP-CLI, but rather a misinterpretation of the `""` value by your shell. This can happen for various reasons depending on the terminal you're...
The technical term for a `:` array is an "associative array". So, another possible name would be `--format=associative-array`, or shorter `--format=assoc`.
I fixed the first failure, but the second one seems to replicate what I had initially encountered when I add support for JSON-encoded array passing. The pull request in https://github.com/wp-cli/entity-command/pull/133...
I did some more digging, and the actual problem is that the capability check for `"assign_post_tags"` returns false. So the user is not allowed to add a term for that...
@johnbillion you introduced the more fine-grained capabilities for taxonomies, so I suppose you know what the expected behavior is. Currently, the WP-CLI code to use `--tax_input` on `post create` with...
Thanks for the link to that ticket, @danielbachhuber, that helps a lot! @johnbillion I still consider this a bug. This is the current behavior I observe: - `'category'` & `'tags_input'`...
Additional note: One more indicator that this would be a bug is that there is a check to see if people are `doing_it_wrong`, but that is not triggered in this...
@danielbachhuber Yes, I completely agree. I just want to make sure it is properly flagged as a bug in Trac if that's the case. We'll need to find a workaround...
@NenadObradovic If you want to retrieve the parent menu item ID, you can do this by adding the field `menu_item_parent` to the displayed fields: ``` wp menu item list main-menu...
We need to check whether both `$old` and `$new` were provided by the user, in any combination. As you've probably noticed, we cannot check this based on the value of...