1

我正在为多语言网站使用“Polylang”插件。所以,有些地方不适合翻译字符串。我可以改变的一些主题变得合适。然而,对于其他一些人,我不能。

这是下面的代码。

模板-contacts.php

原始代码

if ( $message_btn ) : ?>
        <div id="contacts-modal" class="reveal-modal">
             <h1 class="entry-header"><?php _e( 'Send message', 'fluxus' ); ?></h1>
             <div class="modal-contents"></div>
             <a class="close-reveal-modal">&#215;</a>
        </div><?php
    endif;

我已将代码更改为

if ( $message_btn ) : ?>
    <div id="contacts-modal" class="reveal-modal">
         <h1 class="entry-header"><?php pll_e( 'Send message' ); ?></h1>
         <div class="modal-contents"></div>
         <a class="close-reveal-modal">&#215;</a>
    </div><?php
endif;

这适用于部分。但是,页脚中有发送消息和查看地图按钮,以及“使用箭头 %s 键进行导航”文本。我无法成功改变,解决这个部分。这是代码:

if ( $has_map ) {
    $view_btn = '<a id="view-map" href="#" class="button icon-location">' . __( 'View map', 'fluxus' ) . '</a>';
} else {
    $view_btn = '';
}

/**
 * Show Send Message button only if there is a [contact-form-7] short tag
 * in the content.
 */
if ( preg_match('/\[contact\-form\-7.+?\]/is', $post->post_content) ) {
    $message_btn = '<a id="send-message" href="#" class="button icon-paper-plane">' . __( 'Send message', 'fluxus' ) . '</a>';
} else {
    $message_btn = '';
}

?>

如何对上述部分进行更改?

4

1 回答 1

2

尝试更改__( 'View map', 'fluxus' )pll__( 'View map' )

__( 'Send message', 'fluxus' )_pll__( 'Send message' )

当然“查看地图”和“发送消息”需要事先注册

pll_e(_e(回显字符串和__(pll_(返回字符串。

于 2016-12-18T19:34:23.810 回答