filtrod 4.4.0
wp_theme_editor_filetypes
Opis — z kodu źródłowego
Filters the list of file types allowed for editing in the theme file editor.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$default_types | string[] | An array of editable theme file extensions. |
$theme | \WP_Theme | The active theme object. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_theme_editor_filetypes', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_theme_editor_filetypes', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii