add_filter( 'learn_press_user_profile_tabs', function( $tabs ) { foreach ( $tabs as $key => &$tab ) { if ( isset( $tab['id'] ) && strpos( $tab['id'], 'lp_orders_woocommerce' ) !== false ) { $tab['title'] = 'Đơn hàng của tôi'; } } return $tabs; }, 99 );