Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用基于 Wordpress 的功能:
$response = wp_remote_post()
我可以 POST 数据并在 $response->body 中检索 POST 页面的正文
但是如何发布并将用户重定向到发布页面?
创建表单页面和提交按钮不是一个选项,因为我正在尝试在 Wordpress 中创建一个用于团购插件的插件。
使用 GET 也不是一个选项,因为“目标”POST 页面不允许 URL 中的数据。
请帮我 !