bpbbpst_includes_url
The Buddy-bbPress Support Topic bpbbpst includes url hook.
Description
Parameters (1)
- 0. $trailingslashit (unknown) =>
trailingslashit( $this->globals->plugin_url . 'includes' )
- The trailingslashit.
Usage
- To run the hook, copy the example below.
- $trailingslashit = apply_filters( 'bpbbpst_includes_url', $trailingslashit );
- if ( !empty( $trailingslashit ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bpbbpst_includes_url callback
- function filter_bpbbpst_includes_url( $trailingslashit ) {
- // make filter magic happen here...
- return $trailingslashit;
- };
- // add the filter
- add_filter( 'bpbbpst_includes_url', 'filter_bpbbpst_includes_url', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bpbbpst_includes_url', 'filter_bpbbpst_includes_url', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /buddy-bbpress-support-topic.php
- $this->globals->includes_url = apply_filters( 'bpbbpst_includes_url', trailingslashit( $this->globals->plugin_url . 'includes' ) );