Quiero convertir este código a wp_remote_get()
Llamaré a wp_remote_get en mi archivo functions.php.
var articleForm = $(".contact-form");
articleForm.submit(function
t.preventDefault();
var n = {
contact_name: $(this).find("#contact-name").val(),
contact_phone: $(this).find("#contact-phone").val(),
contact_email: $(this).find("#contact-email").val(),
contact_content: $(this).find("#contactContent").val(),
contact_position: $(this).find("#contact-position").val(),
contact_url: window.location.href
};
console.log(n),
$.ajax({
type: "GET",
url: "//lead.xxxxxx.vn/admin/api/contact/add",
data: n,
dataType: "jsonp",
jsonp: "callback",
success: function
0 == t.error_code ? (
window.location.href = "/thank-you",
}
});
});
Muchas gracias.
.