Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_theme_editor_filetypes

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
282
283      /**
284       * Filters the list of file types allowed for editing in the theme editor.
285       *
286       * @since 4.4.0
287       *
288       * @param string[] $default_types An array of editable theme file extensions.
289       * @param WP_Theme $theme         The current theme object.
290       */
291      $file_types = apply_filters( 'wp_theme_editor_filetypes', $default_types, $theme );
292
293      // Ensure that default types are still there.
294      return array_unique( array_merge( $file_types, $default_types ) );
295 }
296
297 /**
298  * Prints file editor templates (for plugins and themes).
299  *
300  * @since 4.9.0