#1486 closed defect (bug) (fixed)
get_pages() filtering by page author [PATCH]
| Reported by: | skippy | Owned by: | ryan |
|---|---|---|---|
| Priority: | normal | Milestone: | 2.1 |
| Component: | Template | Version: | 1.6 |
| Severity: | normal | Keywords: | bg|has-patch bg|commit |
| Cc: | Focuses: |
Description
Attached is a patch that supports a new '&authors=' parameter to get_pages() and wp_list_pages(). It accepts a comma-seperated list of author IDs or author login names (and you can mix-and-match names and IDs in the parameter).
Examples:
wp_list_pages('authors=1,2');
get_pages('authors=admin,skippy,ryan');
I think this will be an extremely useful addition for multi-author blogs, as it allows better control over templating.
Attachments (3)
Change History (8)
#2
@
21 years ago
- Keywords bg|commit bg|needs-testing added
Might as well commit this, but it would be nice if someone could test it first.
#4
@
20 years ago
- Component General → Template
- Keywords bg|2nd-opinion bg|needs-testing removed
- Milestone → 2.1
I have updated skippys patch to run against current trunk:
- Removed the inline query and used a builtin db abstraction functions
- Removed the use of the non-existant
nextinside the foreach loop
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
add '&authors=' parameter to get_pages() and wp_list_pages()