// ======================================== // SECURE WP-JSON - HIDE USER INFORMATION // Added: 2025-10-15 // ======================================== // 1. Disable REST API for non-authenticated users add_filter( 'rest_authentication_errors', function( $result ) { if ( ! empty( $result ) ) { return $result; } if ( ! is_user_logged_in() ) { return new WP_Error( 'rest_not_logged_in', __( 'You are not currently logged in.' ), array( 'status' => 401 ) ); } return $result; }); // 2. Disable /wp-json/wp/v2/users endpoint add_filter( 'rest_endpoints', function( $endpoints ) { if ( isset( $endpoints['/wp/v2/users'] ) ) { unset( $endpoints['/wp/v2/users'] ); } if ( isset( $endpoints['/wp/v2/users/(?P[\d]+)'] ) ) { unset( $endpoints['/wp/v2/users/(?P[\d]+)'] ); } return $endpoints; }); // 3. Block author enumeration via ?author=1 add_action( 'template_redirect', function() { if ( is_admin() ) { return; } if ( isset( $_REQUEST['author'] ) && intval( $_REQUEST['author'] ) ) { wp_redirect( home_url(), 301 ); exit; } }); // 4. Remove author from REST API responses add_filter( 'rest_prepare_post', function( $response, $post, $request ) { $response->data['author'] = null; return $response; }, 10, 3 ); // 5. Remove user sitemap (WordPress 5.5+) add_filter( 'wp_sitemaps_add_provider', function( $provider, $name ) { if ( 'users' === $name ) { return false; } return $provider; }, 10, 2 ); Hand and Wrist Conditions | Mr Nimesh Jain

Hand and Wrist Conditions

Carpal Tunnel Syndrome

Do you feel numbness, tingling, or weakness in your hand? It might be carpal tunnel syndrome, caused by pressure on a nerve in your wrist. We can treat it with splints, therapy, or, for severe cases, a simple surgery to release the pressure and bring you relief.

Dupuytren’s Disease

If you notice your fingers curling into your palm and it’s hard to straighten them, you might have Dupuytren’s disease. We offer treatments like injections or surgery to release the tissue and help your hand function normally again.

Thumb and Wrist Osteoarthritis

Pain and stiffness in your thumb or wrist can make daily activities hard. Whether it’s therapy, medications, or surgery, we tailor our approach to help you manage pain and keep your hands moving.

Thump CMC Joint Replacement

Thumb CMC joint replacement is a surgery to treat arthritis at the base of the thumb by replacing the damaged joint with an artificial implant. It reduces pain and restores function, with recovery taking 3-6 months.