BP_Document_Theme_Compat::directory_template_hierarchy( string $templates )

Add template hierarchy to theme compat for the document directory page.

Description

This is to mirror how WordPress has template hierarchy.

Parameters

$templates

(Required) The templates from bp_get_theme_compat_templates().

Return

(array) $templates Array of custom templates to look for.

Source

File: bp-document/classes/class-bp-document-theme-compat.php

67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
public function directory_template_hierarchy( $templates ) {
 
    /**
     * Filters the template hierarchy for the document directory page.
     *
     * @param array $index -directory Array holding template names to be merged into template list.
     *
     * @since BuddyBoss 1.4.0
     */
    $new_templates = apply_filters(
        'bp_template_hierarchy_document_directory',
        array(
            'document/index-directory.php',
        )
    );
 
    // Merge new templates with existing stack
    // @see bp_get_theme_compat_templates().
    $templates = array_merge( (array) $new_templates, $templates );
 
    return $templates;
}

Changelog

Changelog
Version Description
BuddyBoss 1.4.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.