bp_get_the_topic_post_admin_links
Filters the admin links for the current post in the loop.
Description
Parameters (3)
- 0. $implode (unknown) =>
implode( $separator, $links )
- The implode.
- 1. $links (unknown)
- The links.
- 2. $r (unknown)
- The r.
Usage
- To run the hook, copy the example below.
- $implode = apply_filters( 'bp_get_the_topic_post_admin_links', $implode, $links, $r );
- if ( !empty( $implode ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_get_the_topic_post_admin_links callback
- function filter_bp_get_the_topic_post_admin_links( $implode, $links, $r ) {
- // make filter magic happen here...
- return $implode;
- };
- // add the filter
- add_filter( 'bp_get_the_topic_post_admin_links', 'filter_bp_get_the_topic_post_admin_links', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_get_the_topic_post_admin_links', 'filter_bp_get_the_topic_post_admin_links', 10, 3 );
Defined (1)
The filter is defined in the following location(s).
- /bp-forums/bp-forums-template.php
- return apply_filters( 'bp_get_the_topic_post_admin_links', implode( $separator, $links ), $links, $r );