$brand = JsonLD::fetchElement($jsonld, 'publisher', 'brand', '@type', 'Organization');
if (!empty($brand) && is_array($brand)) {
- $content = JsonLD::fetchElement($brand, 'name', '@type', 'brand');
+ $content = JsonLD::fetchElement($brand, 'name');
if (!empty($content) && is_string($content)) {
$jsonldinfo['publisher_name'] = trim($content);
}
- $content = JsonLD::fetchElement($brand, 'url', '@type', 'brand');
+
+ $content = JsonLD::fetchElement($brand, 'sameAs');
+ if (!empty($content) && is_string($content)) {
+ $jsonldinfo['publisher_url'] = trim($content);
+ }
+
+ $content = JsonLD::fetchElement($brand, 'url');
if (!empty($content) && is_string($content)) {
$jsonldinfo['publisher_url'] = trim($content);
}
+
+ $content = JsonLD::fetchElement($brand, 'logo', 'url');
+ if (!empty($content) && is_string($content)) {
+ $jsonldinfo['publisher_img'] = trim($content);
+ }
+ }
+
+ $logo = JsonLD::fetchElement($jsonld, 'publisher', 'logo');
+ if (!empty($logo) && is_array($logo)) {
+ $content = JsonLD::fetchElement($logo, 'url');
+ if (!empty($content) && is_string($content)) {
+ $jsonldinfo['publisher_img'] = trim($content);
+ }
}
} elseif (!empty($jsonld['publisher']) && is_string($jsonld['publisher'])) {
$jsonldinfo['publisher_name'] = trim($jsonld['publisher']);
if (!empty($content) && is_string($content)) {
$jsonldinfo['author_url'] = trim($content);
}
+
+ $logo = JsonLD::fetchElement($jsonld, 'author', 'logo');
+ if (!empty($logo) && is_array($logo)) {
+ $content = JsonLD::fetchElement($logo, 'url');
+ if (!empty($content) && is_string($content)) {
+ $jsonldinfo['author_img'] = trim($content);
+ }
+ }
} elseif (!empty($jsonld['author']) && is_string($jsonld['author'])) {
$jsonldinfo['author_name'] = trim($jsonld['author']);
}