Image_Processing_Queue::get_image_meta( int $post_id )
Get an image’s post meta data.
Description
Parameters
- $post_id
-
(int) (Required) ID of the image post.
Return
(mixed) Post meta field. False on failure.
Source
File: classes/library/image-processing-queue/includes/class-image-processing-queue.php
public static function get_image_meta( $post_id ) { return wp_get_attachment_metadata( $post_id ); }
Expand full source code Collapse full source code View on Trac