Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REST API: Add support for the 'ignore_sticky_posts' argument #8228

Conversation

Mamaduka
Copy link
Member

Gutenberg ticket: WordPress/gutenberg#68970
Trac ticket: https://core.trac.wordpress.org/ticket/35907


This Pull Request is for code review only. Please keep all other discussion in the Trac ticket. Do not merge this Pull Request. See GitHub Pull Requests for Code Review in the Core Handbook for more details.

Copy link

github-actions bot commented Jan 31, 2025

The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the props-bot label.

Core Committers: Use this line as a base for the props when committing in SVN:

Props mamaduka, peterwilsoncc, joemcgill.

To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook.

Copy link

Test using WordPress Playground

The changes in this pull request can previewed and tested using a WordPress Playground instance.

WordPress Playground is an experimental project that creates a full WordPress instance entirely within the browser.

Some things to be aware of

  • The Plugin and Theme Directories cannot be accessed within Playground.
  • All changes will be lost when closing a tab with a Playground instance.
  • All changes will be lost when refreshing the page.
  • A fresh instance is created each time the link below is clicked.
  • Every time this pull request is updated, a new ZIP file containing all changes is created. If changes are not reflected in the Playground instance,
    it's possible that the most recent build failed, or has not completed. Check the list of workflow runs to be sure.

For more details about these limitations and more, check out the Limitations page in the WordPress Playground documentation.

Test this pull request with WordPress Playground.

$response = rest_get_server()->dispatch( $request );
$data = $response->get_data();

$this->assertSame( $data[0]['id'], $id2, 'Response has no sticky post at the top' );
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I'm reading the code correctly, $data[1] should be $id1 so it would be good to test this.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had to double-check; it looks like the setup creates a couple more posts after self::$post_id, so it's not the next recent post.

Probably not relevant for this test. It just checks that the recently created post is the latest and the sticky post isn't prepended.

@@ -247,6 +247,7 @@ public function get_items( $request ) {
'author_exclude' => 'author__not_in',
'exclude' => 'post__not_in',
'include' => 'post__in',
'ignore_sticky' => 'ignore_sticky_posts',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

By using the value from WP_Query is this a little back-to-front? At the moment if the user does not want stickies to stick, the send true, if they do want them to stick they send false.

Should it be massaged for a positive name? (Genuine question, not a passive aggressive change request!)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could change it to include_sticky. Happy to address it as requested. I don't have a strong opinion here.

@spacedmonkey, @TimothyBJacobs, is there a naming convention guide for REST API parameters?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Besides this naming dilemma, do you think this is good to merge?

I've been trying to come up with a better name, but having trouble there. Even include_sticky is too similar to the include argument.

The endpoint already supports the sticky argument, which is basically post__in/post__not_in for sticky posts.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Besides this naming dilemma, do you think this is good to merge?

Yes, I think it's good to merge putting aside the naming issue. Are you happy to give it a couple of days for others to provide feedback and if nothing comes in, commit it on Friday?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good!

@peterwilsoncc
Copy link
Contributor

Let's put it in with true for ignoring the stickies.

My one last naming things question is whether it should be plural ignore_stickies

@Mamaduka
Copy link
Member Author

Mamaduka commented Feb 9, 2025

Let's put it in with true for ignoring the stickies.

So, merge as it is. Send ' true ' if the user doesn't want sticky posts to stick.

My one last naming things question is whether it should be plural ignore_stickies

Don't have a strong opinion here, but there's not much difference between ignore_stickies and ignore_sticky. The latter is closer to the WP_Query argument, so it is probably easier to remember.

@peterwilsoncc
Copy link
Contributor

My one last naming things question is whether it should be plural ignore_stickies

Don't have a strong opinion here, but there's not much difference between ignore_stickies and ignore_sticky. The latter is closer to the WP_Query argument, so it is probably easier to remember.

My thought (bike shedding??) is that the current name is singular whereas the WP_Query is plural with the _posts. The reason for my suggestion is that multiple posts made be ignored.

But the rest api has stickymaybe the opportunity has been missed and I should stop over thinking it :)

@Mamaduka
Copy link
Member Author

But the rest api has sticky maybe the opportunity has been missed

Considering the existing argument, I'm leaning towards ignore_sticky.

@peterwilsoncc
Copy link
Contributor

Dancer, works for me!

1_exyzhAj1PI8uu8nRG52p4Q

Copy link

A commit was made that fixes the Trac ticket referenced in the description of this pull request.

SVN changeset: 59801
GitHub commit: f71d5f0

This PR will be closed, but please confirm the accuracy of this and reopen if there is more work to be done.

@github-actions github-actions bot closed this Feb 10, 2025
@Mamaduka Mamaduka deleted the add/rest-posts-controller-sticky-support branch February 11, 2025 01:17
@Mamaduka
Copy link
Member Author

Thanks, @peterwilsoncc!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants