我正在尝试更改基于WooCommerce的WP网站上的一些文字。
基本上,通过使用str_replace的过滤器,我试图更改%s'的文本评论。成为别的东西。
此文本包含在single-product-reviews.php文件中。
见下文:
<h2><?php
if ( get_option( 'woocommerce_enable_review_rating' ) === 'yes' && ($count = $product->get_review_count() ) )
printf( _n( '%s review for %s', '%s reviews for %s', $count, 'woocommerce' ), $count, get_the_title() );
else
_e( 'Reviews', 'woocommerce' );
?></h2>
为了做到这一点,我尝试使用以下内容,但它似乎不起作用。我不确定我应该瞄准什么字符串。
function lnz_replace_content()
{
echo str_replace("%s reviews for %s","%s comments about %s", $product);
}
add_filter('init','lnz_replace_content');'
我也使用了gettext,但在这种情况下似乎无法正常工作。
OP更新
我已经开始使用gettext了,但在这种情况下它似乎不起作用。
如前所述,我定位以下代码(在single-product-review.php中)
<h2><?php
if ( get_option( 'woocommerce_enable_review_rating' ) === 'yes' && ( $count = $product->get_review_count() ) )
printf( _n( '%s review for %s', '%s reviews for %s', $count, 'woocommerce' ), $count, get_the_title() );
else
_e( 'Reviews', 'woocommerce' );
?></h2>
如果我使用&#39; gettext&#39;替换&#39;评论&#39;它工作正常。如果我尝试将其替换为%s&#39;%它没有用。
任何想法为什么。
答案 0 :(得分:3)
你可以用两种方式做到这一点:
1)更改语言文件:
msgid "%s reviews for %s"
msgstr "%s comments about %s"
msgid "%s review for %s"
msgstr "%s comment about %s"
2)chang代码:
<h2><?php
if ( get_option( 'woocommerce_enable_review_rating' ) === 'yes' && ($count = $product->get_review_count() ) )
printf( _n( '%s review for %s', '%s reviews for %s', $count, 'woocommerce' ), $count, get_the_title() );
else
_e( 'Reviews', 'woocommerce' );
?></h2>
到
<h2><?php
if ( get_option( 'woocommerce_enable_review_rating' ) === 'yes' && ($count = $product->get_review_count() ) )
printf( _n( '%s comment about %s', '%s comment about %s', $count, 'woocommerce' ), $count, get_the_title() );
else
_e( 'Reviews', 'woocommerce' );
?></h2>
答案 1 :(得分:2)
您可以使用模板覆盖覆盖single-product-reviews.php
,将其复制到主题的woocommerce
文件夹中。
或者您可以从主题functions.php
gettext
add_filter( 'gettext', 'theme_change_comment_field_names', 20, 3 );
/**
* Change comment form default field names.
*
* @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
*/
function theme_change_comment_field_names( $translated_text, $text, $domain ) {
if ( is_singular() ) {
switch ( $translated_text ) {
case '%s reviews for %s' :
$translated_text = __( '%s comments for %s', 'theme_text_domain' );
break;
case 'Related Products' :
$translated_text = __( 'Related Opportunities', 'theme_text_domain' );
break;
}
}
return $translated_text;
}