คุณสามารถลองสิ่งนี้:
is_admin() && add_filter( 'gettext',
function( $translated_text, $untranslated_text, $domain )
{
$old = array(
"Plugin <strong>activated</strong>.",
"Selected plugins <strong>activated</strong>."
);
$new = "Captain: The Core is stable and the Plugin is <strong>activated</strong> at full Warp speed";
if ( in_array( $untranslated_text, $old, true ) )
$translated_text = $new;
return $translated_text;
}
, 99, 3 );
เพื่อแก้ไขข้อความตามความชอบของคุณ:
เราสามารถปรับแต่งเพิ่มเติม:
หากคุณต้องการเปิดใช้งานตัวกรองใน/wp-admins/plugins.php
หน้าคุณสามารถใช้สิ่งต่อไปนี้แทน:
add_action( 'load-plugins.php',
function(){
add_filter( 'gettext', 'b2e_gettext', 99, 3 );
}
);
ด้วย:
/**
* Translate the "Plugin activated." string
*/
function b2e_gettext( $translated_text, $untranslated_text, $domain )
{
$old = array(
"Plugin <strong>activated</strong>.",
"Selected plugins <strong>activated</strong>."
);
$new = "Captain: The Core is stable and the Plugin is <strong>activated</strong> at full Warp speed";
if ( in_array( $untranslated_text, $old, true ) )
{
$translated_text = $new;
remove_filter( current_filter(), __FUNCTION__, 99 );
}
return $translated_text;
}
ที่เราลบการเรียกกลับตัวกรอง gettext ทันทีที่เรามีการแข่งขัน
หากเราต้องการตรวจสอบจำนวนการโทรของ gettext ก่อนที่เราจะจับคู่สตริงที่ถูกต้องเราสามารถใช้สิ่งนี้:
/**
* Debug gettext filter callback with counter
*/
function b2e_gettext_debug( $translated_text, $untranslated_text, $domain )
{
static $counter = 0;
$counter++;
$old = "Plugin <strong>activated</strong>.";
$new = "Captain: The Core is stable and the Plugin is <strong>activated</strong> at full Warp speed";
if ( $untranslated_text === $old )
{
$translated_text = $new;
printf( 'counter: %d - ', $counter );
remove_filter( current_filter(), __FUNCTION__ , 99 );
}
return $translated_text;
}
และฉันได้รับ 301
สายเมื่อติดตั้งของฉัน:
ฉันสามารถลดการ10
โทรได้เพียง:
โดยการเพิ่มตัวกรอง gettext ภายในin_admin_header
เบ็ดภายในload-plugins.php
เบ็ด:
add_action( 'load-plugins.php',
function(){
add_action( 'in_admin_header',
function(){
add_filter( 'gettext', 'b2e_gettext_debug', 99, 3 );
}
);
}
);
โปรดสังเกตว่าสิ่งนี้จะไม่นับการเรียก gettext ก่อนการเปลี่ยนเส้นทางภายในที่ใช้เมื่อเปิดใช้งานปลั๊กอิน
หากต้องการเปิดใช้งานตัวกรองของเราหลังจากเปลี่ยนเส้นทางภายในเราสามารถตรวจสอบพารามิเตอร์ GET ที่ใช้เมื่อเปิดใช้งานปลั๊กอิน:
/**
* Check if the GET parameters "activate" and "activate-multi" are set
*/
function b2e_is_activated()
{
$return = FALSE;
$activate = filter_input( INPUT_GET, 'activate', FILTER_SANITIZE_STRING );
$activate_multi = filter_input( INPUT_GET, 'activate-multi', FILTER_SANITIZE_STRING );
if( ! empty( $activate ) || ! empty( $activate_multi ) )
$return = TRUE;
return $return;
}
และใช้ดังนี้:
b2e_is_activated() && add_filter( 'gettext', 'b2e_gettext', 99, 3 );
ในตัวอย่างรหัสก่อนหน้า