rep__get_logo_image()
This function, retrieves the logo image URL from a given value and returns the URL of the logo image.
Namespace
REP_Malcolm
Return
string
URL of the logo image
Source
File: \includes\rep-helper-functions.php
function rep__get_logo_image($value){
$logo_image = lp__array_key_value('logo_image', $value);
$logo_url = lp__array_key_value('_url', $logo_image);
return $logo_url;
}