Daniel Bachhuber
Daniel Bachhuber
It's a nifty tool for tracking down the callbacks on a hook: ``` $ wp hook wp_enqueue_scripts --fields=callback,location +------------------------------------------------+---------------------------------------------+ | callback | location | +------------------------------------------------+---------------------------------------------+ | wp_localize_jquery_ui_datepicker() | wp-includes/script-loader.php:928 |...
As a WordPress developer, it would be helpful to have a command I could run to determine which images (if any) were missing their expected image sizes. Because WordPress doesn't...
A conglomeration of two tickets --- ### Adding media diff to media command > We've put together a few functions here: https://github.com/DigitalTactics/wp-cli-mediadiff for listing what are likely to be orphan...
This is a placeholder issue for potential improvements to the help screens: * Show disabled commands with the reason why they were disabled * Extended help view, or a man...
Similar to `--help`, it would be informative to have a `--demo` global flag that would interactively demonstrate how each WP-CLI command works. Ultimately, the end experience should be something like...
As a WordPress developer, the [sky can fall on my head](https://twitter.com/danielbachhuber/status/883101198764474368) when something has broken WordPress' database schema. It'd be neat to have a command that quickly verified WordPress' database...
From https://github.com/wp-cli/doctor-command/pull/128 > I don't keep mysql and some of the required tools installed directly on my machine anymore, so getting the tests to run locally was a big pain...
No, I'm not trolling. Crazy idea to throw into the mix: refactor WP-CLI into a JavaScript CLI tool. Doing so would give us CLI access to all of the fancy...
When you run a command with `wp --ssh=`, any filesystem operations will happen on the remote file system (e.g. `wp db export`). It would be helpful to provide a suggested...
`config set --add` is a deviation from our standard syntax. Typically, `set` and `add` are two separate operations (e.g. `option set` vs. `option add`, and `cache set` vs. `cache add`)....