BP_Registration_Theme_Compat::dummy_content()
Filter the_content with either the register or activate templates.
Description Description
Source Source
File: bp-members/classes/class-bp-registration-theme-compat.php
public function dummy_content() {
if ( bp_is_register_page() ) {
return bp_buffer_template_part( 'members/register', null, false );
} else {
return bp_buffer_template_part( 'members/activate', null, false );
}
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.7.0 | Introduced. |