David Herrera
David Herrera
When a search for content yields no results, Zoninator exits without sending a response. jQuery interprets this response to represent a failed request (I believe because it interprets it as...
This sniff attempts to generate an error when `void` appears in a PHPDoc `@return` tag, per the core documentation standard that ["@return void should not be used outside of the...
`WP_Query` calls `stripslashes()` on the `s` query var when parsing searches: https://github.com/WordPress/wordpress-develop/blob/eb06a59f536692e9499b89abd3f156ff56d3075e/src/wp-includes/class-wp-query.php#L1338-L1341 `ES_WP_Query` mimics this behavior in `\ES_WP_Query_Wrapper::parse_search()`, but `\ES_WP_Query_Shoehorn::reboot_query_vars()` puts the original `s` back into the query, causing the...
See #150. Sometimes it's helpful to manually include an option with a value of `''` so you can still label the default behavior. For example: ``` 'limit' => 5, 'children'...
This field will save as expected on the edit-term screen, but not the add-term screen: ``` add_action( 'fm_term_category', function ( $term ) { $fm = new \Fieldmanager_RichTextArea( 'Foo', [ 'name'...
When a field uses a `Fieldmanager_Datasource_Term` with `'only_save_to_taxonomy' => true`, the field's `default_value` is ignored. For example, in this field intended to replace the default category selection meta box, the...
Repeatable groups were deliberately exempted from support for storing data in individual meta keys in #255: > The only way to support such a structure would be to save to...
When presented with a `Fieldmanager_Checkboxes` like the one in the screenshot below, it would be handy to be able to select all or none of the boxes at once:
This aims to improve Fieldmanager's readiness for translation, such as the Italian translation by @enrico-sorcinelli in #508, and address issues raised in that PR and by PHPCS. The changes here...