php 使用gettext WordPress过滤器更改任何可翻译的字符串。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用gettext WordPress过滤器更改任何可翻译的字符串。相关的知识,希望对你有一定的参考价值。
<?php
/**
* Change text strings
*
* @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
*/
function my_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Sale!' :
$translated_text = __( 'Clearance!', 'woocommerce' );
break;
case 'Add to cart' :
$translated_text = __( 'Add to basket', 'woocommerce' );
break;
case 'Related Products' :
$translated_text = __( 'Check out these related products', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_text_strings', 20, 3 );
以上是关于php 使用gettext WordPress过滤器更改任何可翻译的字符串。的主要内容,如果未能解决你的问题,请参考以下文章
php 使用gettext WordPress过滤器更改任何可翻译的字符串。
php [WordPress] - 在CPT页面上替换gettext
使用下拉菜单动态过滤 Wordpress 帖子(使用 php 和 ajax)
php 使用WordPress script_loader_tag过滤器的示例代码来推迟脚本
php WordPress |类别过滤器下拉列表
php 过滤WordPress的图像插入