get_forum_position
The BuddyPress get forum position hook.
Description
Parameters (2)
- 0. $forum_forum_order (unknown)
- The forum forum order.
- 1. $forum_forum_id (unknown)
- The forum forum id.
Usage
- To run the hook, copy the example below.
- $forum_forum_order = apply_filters( 'get_forum_position', $forum_forum_order, $forum_forum_id );
- if ( !empty( $forum_forum_order ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the get_forum_position callback
- function filter_get_forum_position( $forum_forum_order, $forum_forum_id ) {
- // make filter magic happen here...
- return $forum_forum_order;
- };
- // add the filter
- add_filter( 'get_forum_position', 'filter_get_forum_position', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'get_forum_position', 'filter_get_forum_position', 10, 2 );
Defined (1)
The filter is defined in the following location(s).
- /bp-forums/bbpress/bb-includes/functions.bb-template.php
- return apply_filters( 'get_forum_position', $forum->forum_order, $forum->forum_id );