Make WordPress Core

Opened 21 years ago

Closed 20 years ago

Last modified 11 years ago

#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)

template-functions-post.patch (737 bytes ) - added by skippy 21 years ago.
add '&authors=' parameter to get_pages() and wp_list_pages()
1486.patch (1.4 KB ) - added by skippy 21 years ago.
1486.diff (2.4 KB ) - added by westi 20 years ago.
Patch updated against current trunk

Download all attachments as: .zip

Change History (8)

@skippy
21 years ago

add '&authors=' parameter to get_pages() and wp_list_pages()

#1 @ryan
21 years ago

  • Owner changed from anonymous to ryan

@skippy
21 years ago

#2 @davidhouse
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.

#3 @ryan
20 years ago

Update patch for latest trunk.

@westi
20 years ago

Patch updated against current trunk

#4 @westi
20 years ago

  • Component GeneralTemplate
  • Keywords bg|2nd-opinion bg|needs-testing removed
  • Milestone2.1

I have updated skippys patch to run against current trunk:

  1. Removed the inline query and used a builtin db abstraction functions
  2. Removed the use of the non-existant next inside the foreach loop

#5 @ryan
20 years ago

  • Resolutionfixed
  • Status newclosed

(In [4180]) Get pages by author[s]. Props westi. fixes #1486

Note: See TracTickets for help on using tickets.