bp_xprofile_screen_settings()
Show the xprofile settings template.
Description Description
Source Source
File: bp-xprofile/screens/settings-profile.php
function bp_xprofile_screen_settings() { // Redirect if no privacy settings page is accessible. if ( bp_action_variables() || ! bp_is_active( 'xprofile' ) ) { bp_do_404(); return; } /** * Filters the template to load for the XProfile settings screen. * * @since 2.0.0 * * @param string $template Path to the XProfile change avatar template to load. */ bp_core_load_template( apply_filters( 'bp_settings_screen_xprofile', '/members/single/settings/profile' ) ); }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |