List Pages/Articles by Author

Permalink
I have a series of articles written by many authors. I'd like to auto-generate a list of articles written by each author on their respective article pages. See the diagram

Is it possible to assign an author to an article?
Is it possible to list articles by author?

1 Attachment

 
Tony replied on at Permalink Best Answer Reply
Tony
you can do that pretty easily with the pagelist class:

$userID = 1;
Loader::model('page_list');   
$pl = new PageList();  
$pl->filterByUserID( $userID ); 
$pl->setItemsPerPage( $pageSize );
$cArray = $pl->getPage();
alcdev replied on at Permalink Reply
How do you use a custom template with this?