Image_Processing_Queue::get_image_path( int $post_id )
Get an image’s file path.
Description
Parameters
- $post_id
-
(int) (Required) ID of the image post.
Return
(false|string)
Source
File: classes/library/image-processing-queue/includes/class-image-processing-queue.php
public static function get_image_path( $post_id ) { return get_attached_file( $post_id ); }
Expand full source code Collapse full source code View on Trac