bbp_importer_path
bbp_importer_path
Appears in: bbpress.2.5.14, bbpress.2.6.0, bbpress.2.6.1, bbpress.2.6.11, bbpress.2.6.12, bbpress.2.6.2, bbpress.2.6.3, bbpress.2.6.4, bbpress.2.6.5, bbpress.2.6.6, bbpress.2.6.9
Hook Type: filter
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_importer_path') is found 1 times:
- /includes/admin/classes/class-bbp-admin.php line 694690691692693694695696697698699700
// Loop through included importers
foreach
(
$importers
as
$importer
) {
// Allow custom importer directory
$import_dir
= apply_filters(
'bbp_importer_path'
,
$this
->admin_dir .
'importers'
,
$importer
);
// Compile the importer path
$import_file
= trailingslashit(
$import_dir
) .
$importer
.
'.php'
;
// If the file exists, include it
if
(
file_exists
(
$import_file
) ) {