#15145 closed enhancement (fixed)
Add a wp_list_users() template tag
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 5.9 | Priority: | normal |
Severity: | normal | Version: | 3.1 |
Component: | Users | Keywords: | has-patch has-unit-tests commit |
Focuses: | template | Cc: |
Description
Now that get_users()
has been implemented (#14572), I propose we add a function called wp_list_users()
that handles a basic list of users similar to wp_list_authors()
. WordPress has long needed a function for handling this.
The arguments for the function would simply be the same arguments used for get_users()
. The wp_list_users()
function would basically be a function for outputting the HTML. The function should also have the ability to link to the user's archive page and output a link to the user's RSS feed.
This would make it easy for theme developers and users to be able to create a users list without a lot of PHP work.
An alternate idea might be to push a few more arguments into the wp_list_authors()
function, but I don't think that's the best route to go since its primary function is to list users that have written posts.
Attachments (3)
Change History (35)
#4
@
11 years ago
- Component changed from Template to Users
- Focuses template added
- Keywords needs-patch added
@
11 years ago
Adds a new function wp_list_users() which is very similar to wp_list_authors except the 'optioncount' and 'hide_empty' args since they are not valid here.
This ticket was mentioned in Slack in #core by mte90. View the logs.
7 years ago
#9
@
7 years ago
- Keywords needs-refresh added
In 15145.2.diff naming a variable $return
is potentially confusing, for better code readability I'd suggest to rename it. Also needs some minor coding standards.
This ticket was mentioned in PR #1059 on WordPress/wordpress-develop by Mte90.
4 years ago
#10
- Keywords needs-refresh removed
Add wp_list_users
function.
Trac ticket: https://core.trac.wordpress.org/ticket/15145
#13
@
4 years ago
- Keywords needs-refresh added; dev-feedback removed
- Owner set to audrasjb
- Status changed from new to reviewing
Hey,
I'm not super convinced by the style
parameter. First it doesn't exist on related functions like wp_list_pages
, second I don't think the function should output anything else than a list. But it would be nice to add a hook to help to filter the output, just like wp_list_pages
does:
/** * Filters the HTML output of the pages to list. * * @since 5.8.0 * * @see wp_list_users() * * @param string $output HTML output of the users list. * @param array $parsed_args An array of user-listing arguments. See wp_list_users() * for information on accepted arguments. * @param WP_User[] $users Array of the user objects. */ $html = apply_filters( 'wp_list_users', $output, $parsed_args, $users );
Also, the PR needs an @since
mention :)
#14
@
4 years ago
Updated the patch with this feedback except for the style
.
Maybe it is the case to move the style part to a function like get_the_term_list
for users?
This ticket was mentioned in Slack in #core by mte90. View the logs.
4 years ago
#16
@
4 years ago
@Mte90 ok the patch looks good to me, thanks for the update. By the way, there are some minor check failures on the proposed PR :)
#17
@
4 years ago
I saw that errors but they are not on the right lines and so on and I cannot rerun jobs to update the checks itself.
4 years ago
#18
I can't rerun the jobs as the linting is wrong as that lines are clean and report errors on the wrong lines.
#19
@
4 years ago
- Keywords needs-unit-tests added; needs-refresh removed
- Milestone changed from 5.8 to 5.9
Today is feature freeze for 5.8. Since a committer has not had a chance to review this one, I'm going to punt.
I'm putting this in 5.9
instead of Future Release
, though. And I'll try to return to it in the next cycle.
@Mte90 I did push an update to your branch that should fix the coding standards issues! Also, it would be great if we could add some unit tests. Looks like wp_list_authors()
has some. We could probably use those as a starting point.
#21
@
4 years ago
I did the unit tests months ago but I cannot check the logs now to see the errors as they are expired.
#22
@
3 years ago
- Keywords has-unit-tests added; needs-unit-tests removed
Patch 15145.3.diff refreshes the previous patch against trunk and adds unit tests for the wp_list_users()
function.
The tests for wp_list_authors()
and unit tests written for wp_list_users()
in PR 1059 test arguments like exclude
. Such arguments are handled by the call to get_users()
and are not touched by wp_list_users()
.
This patch does not test these arguments and instead tests only the expected behaviour of wp_list_users()
.
#23
@
3 years ago
The patch and tests look good to me. I tested the $echo/$html/$style param variations and it works fine on my side.
This ticket was mentioned in Slack in #core by audrasjb. View the logs.
3 years ago
#25
@
3 years ago
- Owner changed from audrasjb to hellofromTonya
Reassigning review to me in preparation for commit consideration prior to 5.9 feature freeze.
#26
follow-up:
↓ 28
@
3 years ago
I saw a few inconsistencies between this functions and other existing functions like wp_list_pages
or wp_list_categories
.
for instance, if $style !== 'list'
the wp_list_categories
function uses <br />
as a separator.
This ticket was mentioned in PR #1837 on WordPress/wordpress-develop by costdev.
3 years ago
#27
wp_list_users()
makes it easy for extenders to create a basic list of users, similar to wp_list_authors()
.
Trac ticket: https://core.trac.wordpress.org/ticket/15145
#28
in reply to:
↑ 26
@
3 years ago
Replying to audrasjb:
I saw a few inconsistencies between this functions and other existing functions like
wp_list_pages
orwp_list_categories
.
for instance, if
$style !== 'list'
thewp_list_categories
function uses<br />
as a separator.
I see differences between the existing functions themselves. Guessing each has been tailored for its specific list of things.
This new function most closely resembles wp_list_authors()
.
#29
@
3 years ago
- Keywords commit added
PR 1837 includes the patch and tests. It's approved. Marking for commit
.
hellofromtonya commented on PR #1837:
3 years ago
#31
hellofromtonya commented on PR #1059:
3 years ago
#32
This patch was pulled into PR #1837 which was committed via changeset https://core.trac.wordpress.org/changeset/52064.
Would need a patch.