wp_theme_editor_filetypes, $default_types, $theme
wp_theme_editor_filetypes, $default_types, $theme
Appears in: 7.0.3
Hook Type: filter
Displaying hooks found in version: 7.0.3apply_filters('wp_theme_editor_filetypes, $default_types, $theme') is found 1 times:
- /wp-admin/includes/file.php line 298
* * @param string[] $default_types An array of editable theme file extensions. * @param WP_Theme $theme The active theme object. */ $file_types = apply_filters( 'wp_theme_editor_filetypes', $default_types, $theme ); // Ensure that default types are still there. return array_unique( array_merge( $file_types, $default_types ) ); } /**