Puoi provare questo:
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 );
per modificare il messaggio a proprio piacimento:
Possiamo perfezionarlo ulteriormente:
Se si desidera solo attivare il filtro sulla /wp-admins/plugins.php
pagina, è possibile utilizzare invece quanto segue:
add_action( 'load-plugins.php',
function(){
add_filter( 'gettext', 'b2e_gettext', 99, 3 );
}
);
con:
/**
* 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;
}
dove rimuoviamo il callback del filtro gettext non appena abbiamo una corrispondenza.
Se vogliamo controllare il numero di chiamate gettext effettuate, prima di abbinare la stringa corretta, possiamo usare questo:
/**
* 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;
}
e ricevo 301
chiamate sulla mia installazione:
Posso ridurlo alle sole 10
chiamate:
aggiungendo il filtro gettext all'interno del in_admin_header
gancio, all'interno del load-plugins.php
gancio:
add_action( 'load-plugins.php',
function(){
add_action( 'in_admin_header',
function(){
add_filter( 'gettext', 'b2e_gettext_debug', 99, 3 );
}
);
}
);
Si noti che questo non conterà le chiamate gettext prima del reindirizzamento interno utilizzato quando i plugin sono attivati.
Per attivare il nostro filtro dopo il reindirizzamento interno possiamo verificare i parametri GET utilizzati quando i plugin sono attivati:
/**
* 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;
}
e usare così:
b2e_is_activated() && add_filter( 'gettext', 'b2e_gettext', 99, 3 );
nell'esempio di codice precedente.