我有一个双语(英语/阿拉伯语)wordpress 网站。我能够成功翻译导航菜单项。但是,阿拉伯网站上的菜单链接,链接到默认语言,即英语。
我如何告诉 wordpress 我需要在阿拉伯语站点上更改菜单链接(我需要阿拉伯语站点上的链接包含 /ar,例如:www.talalonline.com/ar 而不是 www.talalonline.com)
谢谢
我有一个双语(英语/阿拉伯语)wordpress 网站。我能够成功翻译导航菜单项。但是,阿拉伯网站上的菜单链接,链接到默认语言,即英语。
我如何告诉 wordpress 我需要在阿拉伯语站点上更改菜单链接(我需要阿拉伯语站点上的链接包含 /ar,例如:www.talalonline.com/ar 而不是 www.talalonline.com)
谢谢
@maha,我对此进行了很多搜索,并在这里找到了解决方案,但是答案有点模糊……</p>
由于您不想弄乱您的 WP 核心文件,因此所有更改都在主题中。您的主题位于wp-content/themes/ your-theme-name/
找到您的主题的function.php并将上面的代码添加到文件末尾的 php 结束标记 ( ?> ) 之前:
class CustomLinkModifierWalker extends Walker_Nav_Menu {
function __( $text ) {
if ( preg_match_all('~(.*?)\|(\w{2,})\|~', $text, $matches) ) {
$text = '';
foreach ($matches[1] as $i => $match) {
$text .= "[:{$matches[2][$i]}]$match";
}
$text = __( $text );
}
return $text;
}
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
global $wp_query;
$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
$class_names = $value = '';
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$classes[] = 'menu-item-' . $item->ID;
$class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );
$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
$id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );
$id = $id ? ' id="' . esc_attr( $id ) . '"' : '';
$output .= $indent . '<li' . $id . $value . $class_names .'>';
$attributes = ! empty( $item->attr_title ) ? ' title="' . esc_attr( $item->attr_title ) .'"' : '';
$attributes .= ! empty( $item->target ) ? ' target="' . esc_attr( $item->target ) .'"' : '';
$attributes .= ! empty( $item->xfn ) ? ' rel="' . esc_attr( $item->xfn ) .'"' : '';
$attributes .= ! empty( $item->url ) ? ' href="' . esc_attr( $this->__( $item->url ) ) .'"' : '';
$item_output = $args->before;
$item_output .= '<a'. $attributes .'>';
$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
$item_output .= '</a>';
$item_output .= $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
}
}
然后,您必须在主题中找到菜单视图的位置。我使用的主题在header.php中实现。也许你的使用另一个文件名,比如header-fancy-theme.php。
我的标题视图代码是这样的:
<?php
$nav_sec_menu_params = array(
'depth' => 0,
'theme_location' => 'sec-menu',
'container_class' => 'menu-topmenu-container',
'menu_class' => 'menus menu-topmenu',
'fallback_cb' => 'block_sec_menu'
);
wp_nav_menu($nav_sec_menu_params);
?>
您所要做的就是在 param 数组中添加 Walker 实现:
<?php
$nav_sec_menu_params = array(
'walker' => new CustomLinkModifierWalker(),
'depth' => 0,
'theme_location' => 'sec-menu',
'container_class' => 'menu-topmenu-container',
'menu_class' => 'menus menu-topmenu',
'fallback_cb' => 'block_sec_menu'
);
wp_nav_menu($nav_sec_menu_params);
?>
然后,在您的菜单中,您将使用|lang| 在语言 URL 之后,如下所示:
我知道这不是您跳过自动语言链接的确切用途,但这可能会解决您的问题。
//tested and worked for me.
//use native wordpress filter wp_setup_nav_menu_item
function qtrans_menuitem( $menu_item ) {
// convert local URLs in custom menu items
if ($menu_item->type == 'custom' && stripos($menu_item->url, get_site_url()) !== false){
$menu_item->url = qtrans_convertURL($menu_item->url);
}
return $menu_item;
}
add_filter('wp_setup_nav_menu_item', 'qtrans_menuitem', 0);
qtranslate 的 fork 开箱即用:
https://wordpress.org/plugins/qtranslate-x/
在“导航标签”字段的菜单项中,只需提供两种语言的字符串:
[:en]English Text[:de]Deutsch Text
使用 qTranslate-X 2.7.8、Wordpress 4.1 和二十五 1.0 主题进行测试
WP 中有四个功能可以使用默认或插件选项翻译菜单文本。
这四个函数中的每一个都需要至少一个参数,即要翻译的文本。功能是:
__() –(两个下划线)大部分时间都会用到的基本函数。它以正确的语言返回文本。
e() – 与 _ () 相同,只是它回显文本而不是返回文本。
_n() – 当文本可能是复数时使用,例如,如果您要显示已发表的评论数,您可能希望根据评论数输出“X 评论”或“X 评论”你有。
_x() – 当单词的翻译取决于上下文时很有用。根据上下文,“发布”可能意味着“发布(名词)”或“发布(动词)”。译者在翻译准确时知道您的意思很重要。_x() 主要用于使用单个单词的地方。
前任
echo __( 'Menu Text' );
我还在使用 qTranslate 和双语阿拉伯语/英语网站。
您可以拥有.htaccess
以下内容:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#RewriteRule ^ar[\/]?$ index.php?lang=ar
#RewriteRule ^en[\/]?$ index.php?lang=en
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>
并从 qTranslate 插件设置页面的高级设置部分选择“使用预路径模式(默认,将 /en/ 放在 URL 前面)”选项。