Caleb Burks
Caleb Burks
Extracting an issue that arose in https://github.com/Automattic/Edit-Flow/issues/265 There are two places where Edit Flow will load every author+ (editor & admins included) all at once, which could present scaling issue...
Info: https://yoast.com/yoast-seo-11-0/ Extending docs: https://developer.yoast.com/features/schema/api/#add-or-remove-graph-pieces CAP should ensure it uses the co-author data and not the core WP author data.
Not all of the columns are necessary, so these are often not defined: https://github.com/Automattic/Co-Authors-Plus/blob/master/php/class-wp-cli.php#L822-L828 Same for `$author['user_email']`, `$author['first_name']`, `$author['last_name']`, etc. ____ On another note, user_email is required, otherwise the checks...
If you are offloading queries to ES, then there is a particular problem when filtering posts by author and using CAP (co-authors plus). This can be seen both in the...
## Summary Fixes https://github.com/Yoast/wordpress-seo/issues/16993 by deprecating the special code paths that were made specifically for WP VIP. Usage of VIP-specific role functions is no longer necessary, as they are effectively...
If a php request OOM's while requesting a key from memcached, then the next request (using persistent connections) will be given the value for that last request regardless of what...
Hello, This code is pretty faulty: https://github.com/htmlburger/carbon-fields/blob/47f1538cca6cd2860d1b37a040a42c59eb798d76/core/Datastore/Theme_Options_Datastore.php#L60-L62 Notably, WordPress core only ever puts values of `true` into this cache key: https://github.com/WordPress/WordPress/blob/29c16a48ec21427ba5299fb4c2d7c4749ae3337b/wp-includes/option.php#L210-L211. Admittedly I'm not very sure what the intent of...
## Description Introduces new `Attendant` class that will be responsible for handling the jetpack connection user. By default, sites will continue using the same `wpcomvip` user for connections. Upon enabling...
## Description In WP 6.0, the `filesize` for attachment thumbnails was added to the attachment metadata. We added support for this here: https://github.com/Automattic/vip-go-mu-plugins/pull/2991 Since we don't actually generate attachments, the...
There's a direct database query done here: https://github.com/WordPress/five-for-the-future/blob/production/plugins/wporg-5ftf/includes/xprofile.php#L32-L43. This is run at least once on quite a few pages. I'm not sure what default caching logic exists on WPorg, but...