akcjaod 3.1.0
manage_themes_custom_column
Opis — z kodu źródłowego
Fires inside each custom column of the Multisite themes list table.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$column_name | string | Name of the column. |
$stylesheet | string | Directory name of the theme. |
$theme | \WP_Theme | Current WP_Theme object. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'manage_themes_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_action( 'manage_themes_custom_column', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii