Langkau ke kandungan utama

Baiki Structured Data Errors Blogger

3 langkah untuk baiki Structured Data Errors

Step 1: Find the Keyword position
Step 2: Comment the Existing Markup. How to comment in HTML?
Let consider we need to comment <meta expr:content='data:blog.metaDescription' itemprop='description'/>. Introduce <!-- --> to comment HTML. Eg: <!-- <meta expr:content='data:blog.metaDescription' itemprop='description'/> --> is commented.
Step 3: Paste the Proposed Markup below the commented code. Now let’s start Fixing our Blog.


Add additional data to Blog Schema

Step 1: CTRL+F → http://schema.org/Blog

Step 2: Existing markup: To be commented
<div itemscope='itemscope' itemtype='http://schema.org/Blog' style='display: none;'>
<meta expr:content='data:blog.title' itemprop='name'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' itemprop='description'/>
</b:if>
</div>

Step 3: Proposed markup: To be pasted
<div itemscope='itemscope' itemtype='http://schema.org/Blog' style='display: none;'>
<meta expr:content='data:blog.title' itemprop='name'/>
<meta content='YOUR NAME' itemprop='creator'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' itemprop='description'/>
</b:if>
<meta content='LOGO URL' itemprop='image'/>
</div>

Fix Blogger BlogId, PostId Errors in Structured Data

Step 1: CTRL+F → data:blog.blogId
You may find this keyword in 2 places. Do the following change in both the places.

Step 2: Existing markup: To be commented
<meta expr:content='data:blog.blogId' itemprop='blogId'/>
<meta expr:content='data:post.id' itemprop='postId'/>

Step 3: Proposed markup: To be pasted
<meta expr:content='data:blog.blogId'/>
<meta expr:content='data:post.id'/>

Fix Headline Missing Blogger Structured Data Error

Step 1: CTRL+F → post-title entry-title
You may find this keyword in 2 places. Do the following change in both the places.

Step 2: Existing markup: To be commented
<h3 class='post-title entry-title' itemprop='name'>
<b:if cond='data:post.link or (data:post.url and data:blog.url != data:post.url)'>
<a expr:href='data:post.link ? data:post.link : data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</h3>

Step 3: Proposed markup: To be pasted
<h1 class='post-title entry-title' itemprop='headline'>
<b:if cond='data:post.link or (data:post.url and data:blog.url != data:post.url)'>
<a expr:href='data:post.link ? data:post.link : data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</h1>

Fix mainentityofpage Missing and Required Structured Data Error

Step 1: CTRL+F → http://schema.org/BlogPosting
You may find this keyword in 2 places. Do the following change in both the places.

Step 2: Existing markup: To be commented
<div class='post hentry uncustomized-post-template' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>

Step 3: Proposed markup: To be pasted
<div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>
<meta expr:itemid='data:post.link' content= 'data:post.link : data:post.url' itemType='https://schema.org/WebPage' itemprop='mainEntityOfPage' itemscope='itemscope'/>

Fix for Publisher Errors in Structured Data

Step 1: CTRL+F → class='post-timestamp'
You may find this keyword in 2 places. Do the following change in both the places.

Step 2: Existing markup: To be commented
<span class='post-timestamp'>

Step 3: Proposed markup: To be pasted
<div itemprop='publisher' itemscope='itemscope' itemtype='https://schema.org/Organization'>
<div itemprop='logo' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
<meta content='LOGO URL' itemprop='url'/>
<meta content='600' itemprop='width'/>
<meta content='60' itemprop='height'/>
</div>
<meta content='COMPANY NAME/BLOG NAME' itemprop='name'/>
</div>
<span class='post-timestamp'>

Fix Image Structured Data Blogger Error

Step 1: CTRL+F → data:post.firstImageUrl

Step 2: Existing markup: To be commented
<b:if cond='data:post.firstImageUrl'>
<meta expr:content='data:post.firstImageUrl' itemprop='image_url'/>
</b:if>

Step 3: Proposed markup: To be pasted
<div itemprop='image' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
<b:if cond='data:post.firstImageUrl'>
<meta expr:content='data:post.firstImageUrl' itemprop='url'/>
<b:else/>
<meta content='LOGO URL' itemprop='url'/>
</b:if>
<meta content='800' itemprop='width'/>
<meta content='800' itemprop='height'/>
</div>

And

Step 1: CTRL+F → data:post.thumbnailUrl

Step 2: Existing markup: To be commented
<b:if cond='data:post.thumbnailUrl'>
<meta expr:content='data:post.thumbnailUrl' itemprop='image_url'/>
</b:if>

Step 3: Proposed markup: To be pasted
<div itemprop='image' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
<b:if cond='data:post.thumbnailUrl'>
<meta expr:content='data:post.thumbnailUrl' itemprop='url'/>
<b:else/>
<meta content='LOGO URL' itemprop='url'/>
</b:if>
<meta content='800' itemprop='width'/>
<meta content='800' itemprop='height'/>
</div>

Fix Blogger dateModified Recommended Structured Data Error

Step 1: CTRL+F → abbr class='published'
You may find this keyword in 2 places. Do the following change in both the places.

Step 2: Existing markup: To be commented
<b:if cond='data:post.url'>
<meta expr:content='data:post.url.canonical' itemprop='url'/>
<a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601' itemprop='datePublished'><data:post.timestamp/></abbr></a>
</b:if>

Step 3: Proposed markup: To be pasted
<b:if cond='data:post.url'>
<meta expr:content='data:post.url.canonical' itemprop='url'/>
<a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601' itemprop='datePublished'><data:post.timestamp/></abbr></a>
<meta expr:content='data:post.lastUpdatedISO8601' itemprop='dateModified'/>
</b:if>

Fix Blogger datePublished Format Structured Data Error

Exit the HTML Template Editor.
Go to"Settings"→Choose "Language and formatting".
Select Timestamp Format like "21/09/2016" (dd/mm/yyyy).
Click"Save"
Check "Google Structured Data Testing Tool"

Ulasan

Catatan popular daripada blog ini

HISAP ZAKAR SANGAT BAGUS UNTUK KESIHATAN...

HISAP ZAKAR SANGAT BAGUS UNTUK KESIHATAN. JOM RAMAI2 HISAP ZAKAR... MAAF INI BUKAN PORNO: Tapi untuk kesihatan terutama buat IBU-IBU@ISTERI. Manfaat menghisap ZAKAR (Titit/Penis). 1. Menghisap zakar boleh menjaga keseimbangan Sistem KARDIOVASKULAR. Ketika Anda menghisap zakar pasangan dalam waktu yang lama, Degupan Jatung boleh meningkat hingga 110 per minit. Ini boleh menjadi latihan yang bagus untuk kesihatan Jantung.  2. Menghisap zakar pun boleh membuat Berat Badan Anda tetap stabil atau bahkan Berkurang. Hal ini disebabkan, menghisap zakar selama 5 minit dapat membakar 12 KALORI.         3. Menghisap zakar juga dapat Mencegah Penghasilan Hormon STRESS, GLUKOKORTIKOID. Hormon inilah yang menyebabkan Tekanan Darah Tinggi, lemah otot dan INSOMNIA.         4. Inginkan wajah kekal muda?          Jika begitu, jangan ragu untuk lebih kerap menghisap zakar. Dengan memegang zakar, lebih daripada 30 otot w...

Anda Marah? Ni Pantun Kurang Ajar.

100+ Koleksi Pantun Kurang Ajar & Sindiran Pedas (Edisi Sentap 2026) Dalam dunia media sosial hari ini, pantun kurang ajar atau lebih dikenali sebagai pantun sentap menjadi cara unik untuk meluahkan perasaan. Sama ada untuk menyindir kawan yang 'lupa diri' atau membalas kata-kata musuh, penggunaan pantun melayu yang berbisa tetap mempunyai seninya yang tersendiri. Koleksi di bawah dihimpunkan khas untuk anda yang mencari idea kapsyen TikTok, status WhatsApp, atau sekadar hiburan santai. Ingat, pantun ini hanyalah sekadar gurauan kasar dan tidak bermaksud untuk menghina sesiapa secara melampau. Koleksi Pantun Kurang Ajar Klasik Pantun-pantun di bawah merupakan koleksi asal yang popular sejak 2014, membuktikan bahawa seni sindiran ini tidak ditelan zaman. Jalan jalan naik basikal, Naik basikal di waktu malam, Ada otak ada akal, Jangan disimpan menjadi pekasam. Pekasam buru...

Ucapan Hari Raya Kelakar...

Pantun Klasik Ketupat pulut di atas para, Hendak direbus di tepi perigi, SMS dihantar pengganti kad raya, Tanda ingatan tak luput di hati. Selamat Hari Raya Aidilfitri, Mohon maaf Zahir & Batin. Dialek Nogori Kalau dilipek sebosar kuku. Kalau dibontang sebosar alam. Kok hilang dicaghi. Kok hanyut dipinteh. Kok tonggolam disolam. Datang biarla nampak muko. Kok poei biarla nampak belakang. Jauh diimbau, dokek digamit. Seuntai salam, sojambak kato. Dogup bicagho, meghisik raso. Salam Aidilfitri Maaf Zahir & Batin Gaya Nostalgia SMS Mä$äk £èmäñg $àmßil bdiri, Hèndäk makäñ di Aidifitri, Nàk häñtär käd räyä posmén däh cuti, SMS sahäjä dpt ku bèri. Bùkän lùpä trädi$ì täpì ìkùt tèknøløgi térkiñi yg ädæ d ùjùñg järi. SELÄMÄT HÄRI RÄYÄ ÄIDI£FITRI MAÄF ZÄHIR BÄTiN... Humor / Operator BiLe RaYa LiNe Bz GiLa, MaSa Tu MaKi Pun x GuNa, MaXis, CeLcoM, DiGi SuMenYa SaMa, OrG BiJa...