1. File-File Utama (Template Hierarchy)
index.php
header.php
footer.php
front-page.php
single.php
functions.php
2. Custom Post Types & Custom Fields
-
CPT "Agenda" (agenda)
Membantu admin mengatur agenda sekolah dinamis. Tanggal event disimpan di custom meta: _event_day & _event_month.
-
CPT "Keunggulan" (keunggulan)
Membuat 3 kartu keunggulan di halaman depan terisi secara dinamis, lengkap dengan selector icon Font Awesome.
3. Contoh Kode WP Query Berita
$args = array(
'post_type' => 'post',
'posts_per_page' => 2
);
$query = new WP_Query($args);
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post();
// the_title(); the_permalink();
endwhile;
wp_reset_postdata();
endif;
Tips: Gunakan menu Kustomisasi untuk mempermudah pengaturan header, footer & warna instan.