theme_scandir_exclusions

theme_scandir_exclusions

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('theme_scandir_exclusions') is found 1 times:

  • /wp-includes/class-wp-theme.php line 1473
    		 * @since 4.7.4
    		 *
    		 * @param string[] $exclusions Array of excluded directories and files.
    		 */
    		$exclusions = (array) apply_filters( 'theme_scandir_exclusions', array( 'CVS', 'node_modules', 'vendor', 'bower_components' ) );
    
    		foreach ( $results as $result ) {
    			if ( '.' === $result[0] || in_array( $result, $exclusions, true ) ) {
    				continue;
    			}
    			if ( is_dir( $path . '/' . $result ) ) {