bp_set_theme_compat_template( string $template = '' )

Set the theme compat template global.


Description Description

Stash the template file for the current query. Useful if plugins want to override it, or see what file is being included.


Parameters Parameters

$template

(Optional) The template currently in use.

Default value: ''


Top ↑

Return Return

(string) The template currently in use (value of $template).


Top ↑

Source Source

File: bp-core/bp-core-theme-compatibility.php

function bp_set_theme_compat_template( $template = '' ) {
	buddypress()->theme_compat->template = $template;

	return buddypress()->theme_compat->template;
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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