wordpress / latest / functions / wp_basename.html

wp_basename( string $path, string $suffix = '' ): string

i18n-friendly version of basename().

Parameters

$path string Required
A path.
$suffix string Optional
If the filename ends in suffix this will also be cut off.

Default: ''

Return

string

Source

File: wp-includes/formatting.php. View all references

function wp_basename( $path, $suffix = '' ) {
	return urldecode( basename( str_replace( array( '%2F', '%5C' ), '/', urlencode( $path ) ), $suffix ) );
}

Used By

Used By Description

Changelog

Version Description
3.1.0 Introduced.

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