filtrod 6.8.0
manage_users-network_custom_column
Opis — z kodu źródłowego
Filters the display output of custom columns in the Network Users list table.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$output | string | Custom column output. Default empty. |
$column_name | string | Name of the custom column. |
$user_id | int | ID of the currently-listed user. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'manage_users-network_custom_column', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'manage_users-network_custom_column', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii