Add logos for person and organisation
This commit is contained in:
parent
558189e9d1
commit
e3409c72e2
|
@ -746,14 +746,33 @@ class ParseUrl
|
|||
|
||||
$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']);
|
||||
|
@ -774,6 +793,14 @@ class ParseUrl
|
|||
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']);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue