Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Last active April 26, 2021 03:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/50da8b3526bc8deffef90b0bea4e1f4c to your computer and use it in GitHub Desktop.
Save KaineLabs/50da8b3526bc8deffef90b0bea4e1f4c to your computer and use it in GitHub Desktop.
Set Account Settings Default Page.
<?php
/**
* Set Account Settings Default Page.
*/
add_action( 'bp_template_redirect', 'yzc_set_default_page', 999 );
function yzc_set_default_page() {
$args = array(
'parent_slug' => 'settings',
'subnav_slug' => 'account-privacy'
);
bp_core_new_nav_default( $args );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment