BP_Groups_Theme_Compat::create_template_hierarchy( string $templates )

Add custom template hierarchy to theme compat for the group create 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-groups/classes/class-bp-groups-theme-compat.php

	public function create_template_hierarchy( $templates ) {

		/**
		 * Filters the Groups create page template hierarchy based on priority.
		 *
		 * @since 1.8.0
		 *
		 * @param array $value Array of default template files to use.
		 */
		$new_templates = apply_filters( 'bp_template_hierarchy_groups_create', array(
			'groups/index-create.php'
		) );

		// Merge new templates with existing stack.
		// @see bp_get_theme_compat_templates().
		$templates = array_merge( $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.