Gary Jones

Results 134 issues of Gary Jones

The `wpcom_vip_get_term_by()` function is [deprecated](https://github.com/Automattic/VIP-Coding-Standards/blob/72ec09bba681e2a1fe58590984123e733c702e0f/WordPressVIPMinimum/Sniffs/Functions/RestrictedFunctionsSniff.php#L276), as `get_term_by()` handles all of the caching itself (via WP_Term_Query, etc.) now. The use in the Zoninator class can be simplified.

type: maintenance

Creating an issue with a copy of code that will be cleaned up, since it would need to be tested and re-added. Pulled from the `Zoninator` class. ```php // TODO:...

type: enhancement

As a breaking change, classes should be finalized to reduce the chance of future breakage by a user extended a class in a way that was never intended. https://github.com/rectorphp/swiss-knife has...

type: maintenance

https://github.com/Automattic/zoninator/blob/5588e05cb7dc82dfd10cfd7141fd119425e5ea33/zoninator.php#L1219-L1221 That assignment back to `$zone` is flawed, since the variable just gets overridden on the next loop iteration, and the original `$zones` (which is returned from the function) is...

type: bug

I'm pulling in two WordPress plugins via Composer - one with a tag constraint, one from a `dev-trunk` branch. The latter is being installed to the (custom) vendor directory, instead...

See https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/459. ---- A sniff can be added to flag `get_posts()` and `WP_Query` instances that are made without supplying post_status or post_type. See rationale: > ## Not defining post_status Or...

Type: Enhancement

## Problem The current GitHub Actions workflow for integration tests uses an SVN-based setup (`composer prepare-ci` / `bin/install-wp-tests.sh`) to download WordPress test files. Starting with ubuntu-22.04 (and ubuntu-latest which now...

type: maintenance

Requires Docker, but allows us to streamline development and testing in other ways. - Add a `.wp-env.json` file - Install npm packages during `integrations.yml` - Remove need for installing SVN...

type: maintenance

## Summary This issue proposes transforming the calendar's current post overlay (small popup positioned near the calendar cell) into a proper centered modal dialog. This would enable more comprehensive inline...

## Description The test `CoauthorsWpListAuthorsTest::test_list_authors_with_feed_image_arg_enabled` is failing because the feed image URL is being stripped out, resulting in an empty `src` attribute. ## Failure Details ``` Failed asserting that 'author...

type: bug