bp_settings_screen_data()
Show the data settings template.
Source Source
File: bp-settings/screens/data.php
function bp_settings_screen_data() { if ( bp_action_variables() ) { bp_do_404(); return; } /** * Filters the template file path to use for the data settings screen. * * @since 4.0.0 * * @param string $value Directory path to look in for the template file. */ bp_core_load_template( apply_filters( 'bp_settings_screen_data', 'members/single/settings/data' ) ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |