Wordpress:使用method =“post”进行多语言选择

时间:2012-08-03 12:48:06

标签: php html wordpress multilingual

我正在构建一个具有双语言的网站,其中包含两个标记作为输入页面。我打算在标志周围使用<form method="post">,以便用户可以选择他们想要的语言。

然后在接下来的几页中,我想使用类似的东西:

<?php
if( $_POST['language']=='uk' ){
    echo $uk;
}elseif( $_POST['language']=='french' ){
    echo $french;}
?>

所以点击标志后,他们就选择了他们想要的语言。这只会在他们点击旗帜后才能在下一页上工作,还是可以继续导航到不同的页面,它仍然会选择选择的语言?

如果这不起作用,还能怎样做呢?


更新

在我使用Wordpress之前,我认为我没有说清楚,显然不喜欢$_SESSION

我在名为region.php的模板上有这个提交语言选择:

    <form action="<?php the_permalink(); ?>/home" name="region" method="post">              
        <div id="uk">
            <a href="javascript:document.region.submit()" name="UK">
                <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/-uk.png" width="259" height="160" alt="UK" />
            </a>
            <h1 style="color:black!IMPORTANT;">Enter United Kingdom site</h1>
        </div>

        <div id="world">
            <a href="javascript:document.region.submit()" name="World">
                <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/
world.png" width="258" height="160" alt="
Rest of the World" />
            </a>
            <h1 style="color:black!IMPORTANT;">Enter Rest of the World site</h1>                    
            </div>  
    </form>

我需要在每个其他模板上放置什么来检查选择了哪种语言?如果英国被选中,那么它就可以回应“英国”,如果世界其他地方被选中则可以显示“世界”。

这需要在多个页面上工作,因此如果他们转到about页面检查语言,那么如果他们导航到联系页面,它会再次检查语言 - 所有这些都必须来自初始语言选择。

6 个答案:

答案 0 :(得分:15)

我会将选择放入$_SESSION变量中。这将留在他们身边,直到他们离开。你也可以很好地使用一个cookie。实际上两者的组合会很棒,它会限制那些不允许cookie访问访问的用户,而拥有cookie的人只需要选择一次。

编辑:工作代码示例:

<form action="<?php the_permalink(); ?>/home" name="region" method="post">              
    <div id="uk">
    <a href="javascript:document.region.submit()" name="UK">
        <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/=uk.png" width="259" height="160" alt="UK" />
    </a>
    <h1 style="color:black!IMPORTANT;">Enter United Kingdom site</h1>
    </div>

    <div id="world">
    <a href="javascript:document.region.submit()" name="World">
        <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/world.png" width="258" height="160" alt="Rest of the World" />
    </a>
    <h1 style="color:black!IMPORTANT;">Enter Rest of the World site</h1>                    
    </div>  
</form>
// I assume that this form sends a POST request to the following page URL.
表单重定向到的

页面:

<?php

    session_start();
    if(isset($_POST['country'])) 
    // assuming that your form returns a field called 'country'...
    {
        $_SESSION['myCountry'] = htmlspecialchars($_POST['country']);
        // Assumes that myCountry is now 'UK' or 'World'...
    }
    header('Location: http://www.example.com/yourIndexPage.php');
    // You want to use a quick snippet to process the form and 
    // then redirect them away. This makes for less stupid BACK actions
    // in the browser as well as data being resent to the code.
?>

yourIndexpage.php

<?php

    // As the $_SESSION is now set, we can use it in the page as follows:
    session_start();
    switch($_SESSION['myCountry'])
    {
        case 'UK':
            echo $UK;
            // And anything else you want to do with the UK language.
            break;
        case 'World':
            echo $world;
            // etc etc etc...
            break;
        default:
            // echo out default stuff, probably 'World' at a guess.
            break;
    }

?>

如果您使用的是wordpress,则应该read this

答案 1 :(得分:2)

如果你不想使用cookies,你可以这样做。

session_start();    
if(!isset($_SESSION['language'])){
    $_SESSION['language'] = 'English'; //default language
}

然后当你有2个按钮时,其中一个是英语,另一个是德语或任何你想要的。

<a href="?language=English">English</a>
<a href="?language=German">German</a>

您可以使用此检查来更改页面应使用的语言。

if(isset($_GET['language'])){
    if($_GET['language'] == 'English'){
        $_SESSION['language'] = 'English';
    }
    if($_GET['language'] == 'German'){
        $_SESSION['language'] = 'German';
    }
} 

答案 2 :(得分:2)

的答案

首先,为了向wordpress网站添加区域/多语言支持,没有比此插件更好的选择:http://wpml.org/。它有与之相关的成本,但它并不令人望而却步(你付出了巨大的支持)。

其次,默认情况下不能使用$ _SESSION。 WP在设计上是无国籍的。也就是说,有大量的插件和教程可以在线获得此功能。

代码内容

你原来的表单html没有输入。这是一个没有提交的表格。此表单有两个提交名称相同的location。因此,无论点击哪个按钮,都会针对$_POST['location']提交其值。

<form action="<?php the_permalink(); ?>/home" name="region" method="post">              
    <div id="uk">
        <input type="submit" name="location" value="UK" />
        <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/uk.png" width="259" height="160" alt="UK" />
        <h1 style="color:black!IMPORTANT;">Enter United Kingdom site</h1>
    </div>

    <div id="world">
        <input type="submit" name="location" value="World" />
        <img style="margin-bottom:10px;" src="<?php bloginfo('stylesheet_directory'); ?>/images/world.png" width="258" height="160" alt="Rest of the World" />
        <h1 style="color:black!IMPORTANT;">Enter Rest of the World site</h1>                    
    </div>  
</form>

写一个wordpress动作来处理帖子。将其添加到主题的函数文件中。 请查看http://php.net/manual/en/function.setcookie.php以获取setcookie文档。

function set_location_cookie()
{
    if(isset($_POST['location']))
    {
        setcookie('location', $_POST['location'], time()+1209600);
    }
}
add_action('init', 'set_location_cookie');

然后,您想知道位置的任何地方:

<?php echo $_COOKIE["location"]; ?>

附加信息

我最初点击英国开始,然后设置了cookie,然后我回去点击了World,但是没有复制到世界的cookie,它只是再次显示英国。每次进行不同的选择时,是否可以擦除cookie?

因此,这是关于Cookie如何在技术层面上运作的问题:

  

当浏览器执行此操作[请求网站]时,它会在您的计算机上查找[您的网站]已设置的Cookie文件。如果找到cookie文件,浏览器会将文件中的所有名称 - 值对与URL一起发送到[]服务器。如果找不到cookie文件,它将不发送cookie数据。

新的cookie数据最初不会被发送,直到从浏览器向服务器发送请求后才会发送新的cookie数据,并且可以随请求一起发送。

你如何做这项工作? 成功设置cookie事件后重定向。

function set_location_cookie()
{
    if(isset($_POST['location']))
    {
        // Set Cookie
        setcookie('location', $_POST['location'], time()+1209600);
        // Reload the current page so that the cookie is sent with the request
        header('Location: '.$_SERVER['REQUEST_URI']);
    }
}
add_action('init', 'set_location_cookie');

还可以使用标志的图像作为提交按钮吗? 是的,使用CSS来设置输入按钮的样式。

为每个输入添加ID:id="uk-button"id="world-button"

CSS:

#uk-button {
    background-image: url(uk-flag.png);
    background-size: 100%;
    background-repeat:no-repeat;
}
#world-button {
    background-image: url(world-flag.png);
    background-size: 100%;
    background-repeat:no-repeat;
}

答案 3 :(得分:1)

$ _POST变量仅包含单个请求中包含的数据(请参阅POST (HTTP)),以便他们在“点击”或发布某个表单后会看到相应的内容,因此仅在请求到您的页面后。

为了更加永久存储用户设置,有必要将这些设置保存到$ _SESSION变量中可用的“会话”数据并且是持久的,因此在访问者浏览您的页面之前一直可用。更永久但略微不太纯粹的解决方案是将设置保存到cookie中,在这种情况下,您可以定义到期时间,以便在下次访问时也可以使用它们。

参见一些例子:

<?php

session_start();
$language = $_POST['language'];
$_SESSION['language'] = $language;

......和其他地方:

<?php

session_start();
$language = $_SESSION['language'];

或者你可以使用cookies:

<?php

session_start();
$language = $_POST['language'];
set_cookie('language', $language, 365 * 24 * 60 * 60);   
// will live for one year

......和其他地方:

$language = $_COOKIE['language'];

答案 4 :(得分:0)

它不会在其他页面上运行。 POST变量不是一直发送的。它仅在提交表单时发送。您可以使用COOKIES完成任务。将变量保存在那里并在每个页面上进行检查。

答案 5 :(得分:0)

如果您希望选择保持不变(或通过GET继续传递值?lang=uk,那么您确实需要会话/ Cookie,但这不是很优雅。顺便说一句,您不需要超链接中的图像,其中默认行为被阻止,其父表单使用JavaScript提交。你可以简单地使用这样的东西:

<input alt="en-UK" name="lang" src="uk-flag.png" type="image" value="en-UK">

这将作为一个图像,也是一个表单提交按钮。