Created
February 14, 2019 17:23
-
-
Save kamalahmed/cb1ef003d384715ad38fffff379d5a4c to your computer and use it in GitHub Desktop.
You can convert an attachment url to its absolute path in WordPress using this function.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Get the attachment absolute path from its url | |
* | |
* @param string $url the attachment url to get its absolute path | |
* | |
* @return bool|string It returns the absolute path of an attachment | |
*/ | |
function attachment_url_to_path( $url ) | |
{ | |
$parsed_url = parse_url( $url ); | |
if(empty($parsed_url['path'])) return false; | |
$file = ABSPATH . ltrim( $parsed_url['path'], '/'); | |
if (file_exists( $file)) return $file; | |
return false; | |
} |
It's nice to have, thank you π
You are most welcome π
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's nice to have, thank you π