remove_block_asset_path_prefix()
Removes the block asset's path prefix if provided.
No Hooks.
Returns
String. Path without the prefix or the original value.
Usage
remove_block_asset_path_prefix( $asset_handle_or_path );
- $asset_handle_or_path(string) (required)
- Asset handle or prefixed path.
Changelog
| Since 5.5.0 | Introduced. |
remove_block_asset_path_prefix() remove block asset path prefix code WP 6.9
function remove_block_asset_path_prefix( $asset_handle_or_path ) {
$path_prefix = 'file:';
if ( ! str_starts_with( $asset_handle_or_path, $path_prefix ) ) {
return $asset_handle_or_path;
}
$path = substr(
$asset_handle_or_path,
strlen( $path_prefix )
);
if ( str_starts_with( $path, './' ) ) {
$path = substr( $path, 2 );
}
return $path;
}