Matthew Boynes

Results 57 comments of Matthew Boynes

For what it's worth, the way it's setup is deliberately flexible enough to override in a plugin or theme: ```php if ( defined( 'WP_CRON' ) && WP_CRON && class_exists( 'LTCU_Plugin'...

Apologies for the confusion, that's an example of how the plugin _can_ be enabled during cron jobs. The plugin only excludes wp-cli, cron, and imports by _not_ hooking onto `init`....

Would be cool to offer a trait for models that automatically set the graphql args for register_post_type... ```php 'show_in_graphql' => true, 'graphql_single_name' => '...', 'graphql_plural_name' => '...', ``` And even...

Hmm, this is not a problem for me. Can you share your code to replicate this?

Hi @theoephraim, sorry for the embarrassing delay in responding, and thanks for the PR! I like what you've done here. I might use the core of your code but merge...

There isn't a way to do it out of the box, but I'm not opposed to adding it. I'm leaving this open to see if there's a high enough demand...

What’s tricky about this is: we have no way to differentiate between the field being empty (deliberately, because no term was selected and the post was saved) and the field...

Hi @simonrcodrington, thank you for taking the time to submit this issue and including such detail. The current suggestion is to use `group_is_empty` as you discovered. The purpose of that...

Core is going to start using Select2 in places, so it might be better to use that for consistency (unless there's a really good reason to not use it). Regardless,...

What this is really asking for is a `"sortable_children" => true` option. That would be tricky to build, but I can see the value in it.