Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
BBP_Forums_Group_Extension::unset_super_sticky( array $args = array() )
Unset the type super sticky from topic type
Description Description
Parameters Parameters
- $args
-
(Optional)
Default value: array()
Return Return
(array) $args without the to-front link
Source Source
File: includes/extend/buddypress/groups.php
public function unset_super_sticky( $args = array() ) { if ( isset( $args['super'] ) ) { unset( $args['super'] ); } return $args; }
Changelog Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |