wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
get_block_theme_folders › WordPress Function
Seit5.9.0
Veraltetn/v
› get_block_theme_folders ( $theme_stylesheet = null )
Parameter: |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
For backward compatibility reasons, block themes might be using block-templates or block-template-parts, this function ensures we fallback to these folders properly.
Ähnliche Funktionen: _get_block_templates_files, _get_block_template_file, get_block_templates, get_block_template, get_block_categories
Quellcode
function get_block_theme_folders( $theme_stylesheet = null ) { $theme = wp_get_theme( (string) $theme_stylesheet ); if ( ! $theme->exists() ) { // Return the default folders if the theme doesn't exist. return array( 'wp_template' => 'templates', 'wp_template_part' => 'parts', ); } return $theme->get_block_template_folders(); }