插件文件中的Wordpress重定向

时间:2017-11-24 15:57:08

标签: javascript php jquery wordpress redirect

Image

customer-car-list.php 中有一个按钮,我必须点击,然后重定向才能显示 customer-car-details.php 的内容。不是表格,只是一个按钮。 我可以使用此代码获取点击操作,但重定向后不知道 wp_redirect()

if(isset($_POST['edit_item']) && isset($_POST['car_id'])) {
  //yey! button clicked but how to redirect?
}

我尝试过使用 wp_redirect(),但无法解决。 任何帮助都会很棒。

1 个答案:

答案 0 :(得分:2)

在汽车列表中,您可能拥有所有汽车的列表,因此您可以列出标题和重定向按钮。您使用

获取链接

https://developer.wordpress.org/reference/functions/get_permalink/

使用javascript,您可以重定向页面,

How to redirect page on button click event