اضافة مسار api ورد بريس

PHOTO EMBED

Wed Feb 07 2024 19:26:40 GMT+0000 (Coordinated Universal Time)

Saved by @mebean #ور #بريس

add_action( 'rest_api_init', 'custom_cart_endpoint' );
  
function custom_cart_endpoint() {

    register_rest_route(
        'wc-api/my-custom-cart/v1', 
        '/cart',
        [
            'methods' => 'GET',
            'callback' => 'get_cart_data',
        ]   
    );

}
  
function get_cart_data() {



}
content_copyCOPY