mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://codex.buddypress.org/developer/user-submitted-guides/change-activity-name-slug-to-something-else/
10 lines
451 B
Text
10 lines
451 B
Text
// change BP /activity/ slug to /dashboard/
|
|
define( 'BP_ACTIVITY_SLUG', 'dashboard' );
|
|
|
|
// Change the name for the "Activity" tab to "Dashboard",
|
|
// and reference the newly defined slug /dashboard/
|
|
function bpcodex_rename_profile_tabs() {
|
|
// Change "Activity" to "Dashboard"
|
|
buddypress()->members->nav->edit_nav( array( 'name' => __( 'Dashboard', 'textdomain' ) ), 'dashboard' );
|
|
}
|
|
add_action( 'bp_actions', 'bpcodex_rename_profile_tabs' );
|