WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
231 | if ( is_dir( $dir ) && WP_PLUGIN_DIR !== $dir ) { |
232 |
|
233 | /** |
234 | * Filters the array of excluded directories and files while scanning the folder. |
235 | * |
236 | * @since 4.9.0 |
237 | * |
238 | * @param string[] $exclusions Array of excluded directories and files. |
239 | */ |
240 | $exclusions = (array) apply_filters( 'plugin_files_exclusions', array( 'CVS', 'node_modules', 'vendor', 'bower_components' ) ); |
241 |
|
242 | $list_files = list_files( $dir, 100, $exclusions ); |
243 | $list_files = array_map( 'plugin_basename', $list_files ); |
244 |
|
245 | $plugin_files = array_merge( $plugin_files, $list_files ); |
246 | $plugin_files = array_values( array_unique( $plugin_files ) ); |
247 | } |
248 |
|
249 | return $plugin_files; |