Ryan McCue
Ryan McCue
Currently, `meta_query` is flagged by `WordPress.DB.SlowDBQuery` as being a "possible slow query". The reality of this is more complex, as the slow part of meta queries really only kicks in...
`draggableTrack`, added in #722, doesn't respect the `step` prop, instead allowing users to drag the track to any value. For example (see also [this Codepen](https://codepen.io/rmccue/pen/VwKQBJa?editors=0010)): ```jsx ``` This will only...
I've seen in a few places we have code like this: ```php return $foo ? true : false; ``` The ternary here is redundant and is actually just casting the...
100 posts per page is a pretty low limit really, and in actuality we can allow probably another order of magnitude here. The 100 per page decision in the REST...
phpcs:disable turns off the linter entirely, which isn't what we want.
Occasionally, jobs may get stuck. Having a high limit of something like 30 mins (configurable) would help catch these. - [ ] Add timeout setting via wp-config constant - [...
Accidentally introduced in #188, but that only exposed the underlying issue, as it switched fsockopen to HTTP/1.1.
SOCKS proxies are not currently supported. It looks like there's a couple of issues with this though: 1. Testing will be a pain. We can handle this like the HTTP...
Fixes #34. Still in progress.
Our exceptions for cURL at the moment fall into a single bucket. Rather than having transport-specific exceptions, these should use a common set of names. (In addition, we can probably...