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 );
		}

User Contributed Notes

You must log in before being able to contribute a note or feedback.