wp_get_original_image_path WordPress Filter Hook
The wp_get_original_image_path Wordpress hook allows you to get the original image path for a given image. This can be useful if you need to access the original image for a particular purpose, such as creating a custom size or cropping the image.
apply_filters( 'wp_get_original_image_path', string $original_image , int $attachment_id ) #
Filters the path to the original image.
Parameters
- $original_image
(string)Path to original image file.
- $attachment_id
(int)Attachment ID.
Source
File: wp-includes/post.php
Changelog
Version | Description |
---|---|
5.3.0 | Introduced. |