Konfigurasi widget Blogger
Setiap tipe widget memiliki pengaturannya masing-masing. Pengaturan widget ini ditentukan pada saat menambahkan widget baru atau pada saat meng-konfigurasi (edit) widget di halaman Tata Letak.
 |
Konfigurasi pada widget FeaturedPost |
Kode sumber pengaturan widget berdasarkan tangkapan layar diatas adalah:
- Tampilkan widget ini : dari atribut
visible='true'
.
- Kolom Judul : dari atribut
title='Judul'
melalui markup :
<b:include name='widget-title'/>
- Tampilkan judul postingan :
<b:widget-setting name='showPostTitle'>
- Tampilkan cuplikan teks :
<b:widget-setting name='showSnippet'>
- Tampilkan gambar :
<b:widget-setting name='showFirstImage'>
- Gunakan postingan terbaru :
<b:widget-setting name='useMostRecentPost'>
Kode Konfigurasi widget
Konfigurasi widget jika susunan markup kodenya dilihat dari editor HTML template, dikemas dalam tag <b:widget-settings>
Perhatikan struktur umum yang terdapat disetiap widget dibawah ini:
<b:widget id='ID_widget' title='Widget Title' type='typeWidget' visible='true'>
<b:widget-settings>
<b:widget-setting name='opsi1'>text_value</b:widget-setting>
<b:widget-setting name='opsi2'>text_value</b:widget-setting>
<b:widget-setting name='opsi3'>text_value</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<!--elemen markup widget-->
</b:includable>
</b:widget>
Tag <b:widget-settings> hanya boleh berisi tag <b:widget-setting> sedangkan nilai (value) dari atribut name='(nilai)' adalah tergantung pada type widget.
Konfigurasi pada widget Blog1
|
Konfigurasi pada widget Blog1 #1 |
|
Konfigurasi pada widget Blog1 #2 |
|
Konfigurasi pada widget Blog1 #3 |
Kode konfigurasi widget Blog
<b:widget id='Blog1' locked='true' title='Postingan Blog' type='Blog' version='2' visible='true'>
<b:widget-settings>
<b:widget-setting name='showDateHeader'>false</b:widget-setting>
<b:widget-setting name='style.textcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showShareButtons'>true</b:widget-setting>
<b:widget-setting name='showCommentLink'>true</b:widget-setting>
<b:widget-setting name='style.urlcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showAuthor'>true</b:widget-setting>
<b:widget-setting name='style.linkcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='style.unittype'>TextAndImage</b:widget-setting>
<b:widget-setting name='style.bgcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='reactionsLabel'/>
<b:widget-setting name='showAuthorProfile'>false</b:widget-setting>
<b:widget-setting name='style.layout'>1x1</b:widget-setting>
<b:widget-setting name='showLabels'>true</b:widget-setting>
<b:widget-setting name='showLocation'>true</b:widget-setting>
<b:widget-setting name='postLabelsLabel'/>
<b:widget-setting name='showTimestamp'>true</b:widget-setting>
<b:widget-setting name='postsPerAd'>2</b:widget-setting>
<b:widget-setting name='showBacklinks'>false</b:widget-setting>
<b:widget-setting name='style.bordercolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showInlineAds'>true</b:widget-setting>
<b:widget-setting name='showReactions'>false</b:widget-setting>
</b:widget-settings>
Keterangan konfigurasi widget Blog
Huruf tebal dan tanda (*) termasuk konfigurasi elemen byline (default).
Konfigurasi | Keterangan | Nilai |
showDateHeader | Opsi Tanggal | True / False |
style.textcolor | CSS warna teks | HEX color |
showShareButtons | Opsi tombol Berbagi* | True / False |
showCommentLink | Opsi tombol Komentar* | True / False |
style.urlcolor | CSS warna teks link | HEX color |
showAuthor | Opsi Nama Penulis* | True / False |
style.unittype | Gaya tampilan | TextAndImage |
reactionsLabel | Tidak berlaku lagi | - |
showAuthorProfile | Opsi Profil Penulis | True / False |
style.layout | Gaya tata letak | 1x1 |
showLabels | Opsi Label postingan* | True / False |
showLocation | Opsi Lokasi* | True / False |
postLabelsLabel | Tidak berlaku lagi | - |
showTimestamp | Opsi tanggal Publikasi* | True / False |
postsPerAd | Jumlah iklan postingan | Number |
showBacklinks | Tidak berlaku lagi | True / False |
style.bordercolor | CSS warna garis batas | HEX color |
showInlineAds | Opsi iklan baris | True / False |
showReactions | Tidak berlaku lagi | True / False |