Arkadaşlar Google Structure için eklenti kullanıyorum ve sayfa başlığı yerine makale başlığını "headline": şeklinde kullanıyor. OGtitle, description için kulandığım eklenti ise sayfa başlığı olarak düzgün kullanmış. Nasıl düzelteceğimi bulamadım yardımcı olabilecek var mı? (eklenti sahibine ulaşamam)

OG title için ilgili eklenti dosyasına baktığımda kod yapısı:
// Attributes
$attribs = '';
if (isset($row->attribs)) {
//$attribs = json_decode($row->attribs);
$attribs = (is_string($row->attribs) ? json_decode($row->attribs) : $row->attribs);
}

if (isset($row->metadesc)) {
$thisDesc = $row->metadesc;
}

if ($title_type == 3) {
if (isset($document->title) && $document->title != '') {
$thisTitle = $document->title;
} else {
// Fallback to standard title
if (isset($row->title)) {
$thisTitle = $row->title;
}
}

} else if ($title_type == 2) {
if (isset($attribs->article_page_title) && $attribs->article_page_title != '') {
$thisTitle = $attribs->article_page_title;
} else {
// Fallback to standard title
if (isset($row->title)) {
$thisTitle = $row->title;
}
}

} else {
if (isset($row->title)) {
$thisTitle = $row->title;
}
}

Google structure data eklentisinde ilgili kısım şyle:
// Array data
return array(
"headline" => $item->title,
"description" => isset($item->introtext) && !empty($item->introtext) ? $item->fulltext : $item->fulltext,
Not: gsd item title yazan yere article_page_title yazdım ama olmadı.