wpseek.com
				A WordPress-centric search engine for devs and theme authors
			_wp_get_attachment_relative_path is private and should not be used in themes or plugins directly.
_wp_get_attachment_relative_path › WordPress Function
Since4.4.1
Deprecatedn/a
› _wp_get_attachment_relative_path ( $file )
| Access: | 
 | 
| Parameters: | 
 | 
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Gets the attachment path relative to the upload directory.
Source
function _wp_get_attachment_relative_path( $file ) {
	$dirname = dirname( $file );
	if ( '.' === $dirname ) {
		return '';
	}
	if ( str_contains( $dirname, 'wp-content/uploads' ) ) {
		// Get the directory name relative to the upload directory (back compat for pre-2.7 uploads).
		$dirname = substr( $dirname, strpos( $dirname, 'wp-content/uploads' ) + 18 );
		$dirname = ltrim( $dirname, '/' );
	}
	return $dirname;
}