BP_Blogs_Theme_Compat::create_template_hierarchy( string $templates )
Add custom template hierarchy to theme compat for the blog create 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-blogs/classes/class-bp-blogs-theme-compat.php
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | public function create_template_hierarchy( $templates ) { /** * Filters the custom templates used for theme compat with the blog create page. * * @since BuddyPress 1.8.0 * * @param array $value Array of template paths to add to template list to look for. */ $new_templates = apply_filters( 'bp_template_hierarchy_blogs_create' , array ( 'blogs/index-create.php' ) ); // Merge new templates with existing stack // @see bp_get_theme_compat_templates(). $templates = array_merge ( ( array ) $new_templates , $templates ); return $templates ; } |
Changelog
Version | Description |
---|---|
BuddyPress 1.8.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.