Andrew Ozz
Andrew Ozz
Enforcing equal white space between associative arrays key => value is not readable in many cases
Example: ``` 'long-array-key-that-would-make-for-a-long-line-and-there-is-no-way-to-wrap-it-up' => 'value', 'key' => 'long-array-key-value-that-is-not-easy-to-read-as-it-makes-the-line-too-long', ``` That spacing is contrary to the WP coding standards which say: > Exception: if you have a block of code that...
When replacing emojis with images in a whole HTML document, there may be areas/elements that need to be excluded from processing. For example: inline editors or elements with `contentEditable`. Ideally...
(Follow-up from #1485). Currently (because of PHP 5.2) lambda/anonymous functions cannot be used in core. However once we move on to requiring a more recent PHP version, this will become...
This is a follow-up from #1323. It seems that the parser has introduced unwanted changes in single function and filter/action parameters: associative arrays were formatted to be multi-line. This was...
Seems this has been discussed at different times/places but maybe a good idea to gather it in one place. What are the expected uses of the combination of: `WP_DISABLE_PLUGINS_AUTO_UPDATE` constant,...
Remove the use of nested filters. Add params to `wp_handle_upload()` and `wp_upload_bits()` instead. Trac ticket: https://core.trac.wordpress.org/ticket/60835 --- **This Pull Request is for code review only. Please keep all other discussion...
Just an FYI that from WP 5.3 there are couple of functions to find and generate missing image sub-sizes, and the image meta is saved after each sub-size is generated....