wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_get_block_name_from_theme_json_path is private and should not be used in themes or plugins directly.
wp_get_block_name_from_theme_json_path › WordPress Function
Since6.3.0
Deprecatedn/a
› wp_get_block_name_from_theme_json_path ( $path )
Access: |
|
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Gets the block name from a given theme.json path.
Source
function wp_get_block_name_from_theme_json_path( $path ) {
// Block name is expected to be the third item after 'styles' and 'blocks'.
if (
count( $path ) >= 3
&& 'styles' === $path[0]
&& 'blocks' === $path[1]
&& str_contains( $path[2], '/' )
) {
return $path[2];
}
/*
* As fallback and for backward compatibility, allow any core block to be
* at any position.
*/
$result = array_values(
array_filter(
$path,
static function ( $item ) {
if ( str_contains( $item, 'core/' ) ) {
return true;
}
return false;
}
)
);
if ( isset( $result[0] ) ) {
return $result[0];
}
return '';
}