bbp_plugin_basename

bbp_plugin_basename

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_plugin_basename') is found 1 times:

  • /bbpress.php line 215
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    /** Paths *************************************************************/
     
    // File & base
    $this->file         = __FILE__;
    $this->basename     = apply_filters( 'bbp_plugin_basename', str_replace( array( 'build/', 'src/' ), '', plugin_basename( $this->file ) ) );
    $this->basepath     = apply_filters( 'bbp_plugin_basepath', trailingslashit( dirname( $this->basename ) ) );
     
    // Path and URL
    $this->plugin_dir   = apply_filters( 'bbp_plugin_dir_path', plugin_dir_path( $this->file ) );
    $this->plugin_url   = apply_filters( 'bbp_plugin_dir_url',  plugin_dir_url ( $this->file ) );