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