wp_get_original_image_path
Filters the path to the original image.
Usage
add_filter( 'wp_get_original_image_path', 'wp_kama_get_original_image_path_filter', 10, 2 );
/**
* Function for `wp_get_original_image_path` filter-hook.
*
* @param string $original_image Path to original image file.
* @param int $attachment_id Attachment ID.
*
* @return string
*/
function wp_kama_get_original_image_path_filter( $original_image, $attachment_id ){
// filter...
return $original_image;
}
- $original_image(string)
- Path to original image file.
- $attachment_id(int)
- Attachment ID.
Changelog
| Since 5.3.0 | Introduced. |
Where the hook is called
wp_get_original_image_path
wp-includes/post.php 8483
return apply_filters( 'wp_get_original_image_path', $original_image, $attachment_id );