Możesz spróbować:
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 );
aby zmodyfikować wiadomość według własnych upodobań:
Możemy to udoskonalić:
Jeśli chcesz tylko aktywować filtr na /wp-admins/plugins.php
stronie, możesz zamiast tego użyć następujących opcji:
add_action( 'load-plugins.php',
function(){
add_filter( 'gettext', 'b2e_gettext', 99, 3 );
}
);
z:
/**
* 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;
}
gdzie usuwamy wywołanie zwrotne filtra gettext, gdy tylko mamy dopasowanie.
Jeśli chcemy sprawdzić liczbę wykonanych wywołań gettext, zanim dopasujemy prawidłowy ciąg, możemy użyć tego:
/**
* 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;
}
i odbieram 301
połączenia podczas instalacji:
Mogę zredukować to do samych 10
połączeń:
dodając filtr gettext w in_admin_header
haku, w load-plugins.php
haku:
add_action( 'load-plugins.php',
function(){
add_action( 'in_admin_header',
function(){
add_filter( 'gettext', 'b2e_gettext_debug', 99, 3 );
}
);
}
);
Zauważ, że nie policzy to wywołań gettext przed wewnętrznym przekierowaniem używanym podczas aktywacji wtyczek.
Aby aktywować nasz filtr po wewnętrznym przekierowaniu, możemy sprawdzić parametry GET używane podczas aktywacji wtyczek:
/**
* 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;
}
i użyj w ten sposób:
b2e_is_activated() && add_filter( 'gettext', 'b2e_gettext', 99, 3 );
w poprzednim przykładzie kodu.