Prevent duplicate post format taxonomy queries #66627
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What?
If Gutenberg is active on WordPress 6.7 or later, the filter that adds the post format to the taxonomy query should not run twice.
This PR adds an early return to gutenberg_add_format_query_vars_to_query_loop_block if the post format is already in the taxonomy query.
Closes #66071
Testing Instructions
I tested this by doing the following:
First I activated Gutenberg with this PR on WordPress 6.7 nightly.
I created a post with a post format and set the query loop to show this format.
Then I edited
gutenberg_add_format_query_vars_to_query_loop_block
and added a temporaryecho
inside the new if-statement, to confirm that the early return was triggered on the front of the website.I also confirmed that the correct post was still shown.
Then I ran the Gutenberg PHP tests without issues. I have not ran the core tests!
Then I activated Gutenberg with the PR on WordPress 6.6.2 and re-did the manual test of the query loop with the post format filter applied, and confirmed that the filter still worked.