我正在为多语言网站使用“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">×</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">×</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 = '';
}
?>
如何对上述部分进行更改?