wpseek.com
A WordPress-centric search engine for devs and theme authors
_get_block_templates_paths is private and should not be used in themes or plugins directly.
_get_block_templates_paths › WordPress Function
Since5.9.0
Deprecatedn/a
› _get_block_templates_paths ( $base_directory )
Access: |
|
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Finds all nested template part file paths in a theme's directory.
Related Functions: _get_block_templates_files, get_block_templates, get_block_template, _get_block_template_file, block_template_part
Source
function _get_block_templates_paths( $base_directory ) { $path_list = array(); if ( file_exists( $base_directory ) ) { $nested_files = new RecursiveIteratorIterator( new RecursiveDirectoryIterator( $base_directory ) ); $nested_html_files = new RegexIterator( $nested_files, '/^.+\.html$/i', RecursiveRegexIterator::GET_MATCH ); foreach ( $nested_html_files as $path => $file ) { $path_list[] = $path; } } return $path_list; }