BP_Activity_Theme_Compat::directory_template_hierarchy( string $templates )

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


Description Description

This is to mirror how WordPress has template hierarchy.


Parameters Parameters

$templates

(Required) The templates from bp_get_theme_compat_templates().


Top ↑

Return Return

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


Top ↑

Source Source

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

	public function directory_template_hierarchy( $templates ) {

		/**
		 * Filters the template hierarchy for the activity directory page.
		 *
		 * @since 1.8.0
		 *
		 * @param array $index-directory Array holding template names to be merged into template list.
		 */
		$new_templates = apply_filters( 'bp_template_hierarchy_activity_directory', array(
			'activity/index-directory.php'
		) );

		// Merge new templates with existing stack
		// @see bp_get_theme_compat_templates().
		$templates = array_merge( (array) $new_templates, $templates );

		return $templates;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.