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