filtrod 2.3.0
update_footer
Opis — z kodu źródłowego
Filters the version/update text displayed in the admin footer.
WordPress prints the current version and update information, using core_update_footer() at priority 10.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$content | string | The content that will be printed. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'update_footer', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'update_footer', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii