remove_block_asset_path_prefix() WordPress Function
This function will remove the block asset path prefix from the given string. This is useful when you need to enqueue a script or stylesheet that is located in the blocks directory.
remove_block_asset_path_prefix( string $asset_handle_or_path ) #
Removes the block asset’s path prefix if provided.
Parameters
- $asset_handle_or_path
(string)(Required)Asset handle or prefixed path.
Return
(string) Path without the prefix or the original value.
Source
File: wp-includes/blocks.php
function remove_block_asset_path_prefix( $asset_handle_or_path ) { $path_prefix = 'file:'; if ( 0 !== strpos( $asset_handle_or_path, $path_prefix ) ) { return $asset_handle_or_path; } $path = substr( $asset_handle_or_path, strlen( $path_prefix ) ); if ( strpos( $path, './' ) === 0 ) { $path = substr( $path, 2 ); } return $path; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |