perch_blog_authors()
Display a list of blog post authors with perch_blog_authors().
Requires
- The Blog App installed
Parameters
| Type | Description |
|---|---|
| Array | Options array, see table below |
| Boolean | Set to true to have the value returned instead of echoed. |
Options array
| Name | Value |
|---|---|
| template | The template to use. |
| skip-template | true/false. Return an array rather than HTML. |
| cache | true/false. By default, output is cached for 10 minutes. |
| include-empty | true/false. Include authors that have no posts. |
| filter | Results can be filtered using the same filter options as perch_content_custom(). Includes support for multiple filters. |
| sort | The ID of a field to sort by. |
| sort-order | ASC/DESC |
| start | Int. The start position. Defaults to 1. Not compatible with pagination. |
| return-html | true/false. For use with skip-template. Adds the HTML onto the end of the returned array |
| paginate | True or false. Whether to use pagination. |
| count | Integer. (When used with paginate) The number of items to show per page if pagination is being used. |
| pagination-var | The URL query string parameter name to use for the page number. Defaults to page. |
| page-links | True or false. Create numbered page links as well as previous and next links. |
| page-link-template | The template to use (if not the default) to generate the page links. |
| page-link-style | shortened or all. By default a shortened set of page links are generated. If you want a link for every page, set to all. |
Usage examples
Simple display using the default template.
<?php perch_blog_authors(); ?>
By default, this uses the author_list.html template, but you can specify your own in the options array.
<?php
perch_blog_authors(array(
'template' => 'author_list.html',
));
?>