BBP_Shortcodes::display_topic_index_query( array $args = array() )
Filter the query for the topic index
Description Description
Parameters Parameters
- $args
-
(Optional)
Default value: array()
Return Return
(array)
Source Source
File: includes/common/shortcodes.php
public function display_topic_index_query( $args = array() ) {
$args['author'] = 0;
$args['show_stickies'] = true;
$args['order'] = 'DESC';
return $args;
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |