08/15/2016 at 11:09 am
#386651
Keymaster
@ Brittany
Like this:
$entry = new cnEntry();
// `id` or `slug`
$entry->set( $slid );
// get image meta for the photo
$image_meta = $entry->getImageMeta();
// get image meta for logo
$logo_meta = $entry->getImageMeta( array( 'type' => 'logo' ) );
Both $image_meta and $logo_meta will be arrays. The URL in the url key of the array. The documentation of the getImageMeta() method can be found here. Using this method you can set options such as size, crop mode and quality too.
Hope that helps!
