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