plugins - No route was found matching the URL and request method

admin2025-03-20  1

I just created a test restapi function but it returns 404, please tell me what m doing wrong?

function draftusr( WP_REST_Request $request ) {

        $usr= 20;

        return $usr;
    }
    add_action( 'rest_api_init', function () {

  register_rest_route( 'draftusr/v2', '/draftusr', array(
        'methods' => array('GET','POST'),
        'callback' => 'draftusr',
    ) );

});

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1742405476a212067.html

最新回复(0)