BBP_Shortcodes::display_topics_of_tag_query( array $args = array() )
Filter the query for topic tags
Description
Parameters
- $args
-
(Optional)
Default value: array()
Return
(array)
Source
File: bp-forums/common/shortcodes.php
public function display_topics_of_tag_query( $args = array() ) {
$args['tax_query'] = array( array(
'taxonomy' => bbp_get_topic_tag_tax_id(),
'field' => 'id',
'terms' => bbpress()->current_topic_tag_id
) );
return $args;
}
Changelog
| Version | Description |
|---|---|
| bbPress (r3637) | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.