add_action('rest_api_init', function() {
register_rest_route('widget-proxy/v1', '/futebol', [
'methods' => 'GET',
'callback' => function() {
$response = wp_remote_get('https://widget.api-futebol.com.br/render/widget_01e457ab3eb15f72');
$html = wp_remote_retrieve_body($response);
// Injeta CSS para remover footer e banner
$css = '';
$html = str_replace('
', $css . '', $html);
return new WP_REST_Response(
new WP_HTTP_Response($html, 200, ['Content-Type' => 'text/html'])
);
},
'permission_callback' => '__return_true',
]);
});