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;
	}
	return substr(
		$asset_handle_or_path,
		strlen( $path_prefix )
	);
}

Changelog

Version Description
5.5.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/remove_block_asset_path_prefix