简体   繁体   English

根据Wordpress中的选择重定向到其他页面

[英]Redirect to different page based on choice in Wordpress

I'm currently building a website for a client and need help with an issue. 我目前正在为客户建立一个网站,需要有关问题的帮助。

The company offers services for both individuals and businesses so I built a "welcome page" where you can choose which one you're looking for. 该公司为个人和企业提供服务,因此我建立了一个“欢迎页面”,您可以在其中选择要查找的页面。 see image here 在这里看到图片

After you make your choice you're taken to either the business homepage or individual homepage. 做出选择后,您将被带到业务主页或个人主页。

I want the browser to remember the choice the visitor makes so next time they're browsing the website they're automatically taken to either business or individual homepage. 我希望浏览器记住访问者所做的选择,因此下次他们浏览网站时,他们将自动进入业务页面或个人主页。

Do you guys have any simple solution for this? 你们有什么简单的解决方案吗? Thanks! 谢谢!

One way of doing is to use cookies. 一种方法是使用cookie。 Although it is easy to use/implement, there are certain legislation around cookie usage, depending on which country your page will be served. 尽管易于使用/实现,但对于Cookie的使用还是有一些法律规定,具体取决于将在哪个国家/地区投放您的网页。

Here is an example: 这是一个例子:

<?php

add_action( 'init', 'setting_my_first_cookie' );

function setting_my_first_cookie() {
 setcookie( $v_choice, $v_value, 30 * DAY_IN_SECONDS, COOKIEPATH, COOKIE_DOMAIN );
}

?>

You can get more detailed info from here 您可以从这里获取更多详细信息

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM