Posted by: murdanieko on: December 28, 2009
Buatlah sebuah file baru berisi kode berikut, lalu beri nama seperti allpost.php. Taruh file tersebut di dalam folder template yang sedang digunakan. Login ke admin dashboard, lalu buat page baru. Beri judul “All Time Posts” (atau apapun), kosongkan isi posting, pilih page template allpost.php pada sidebar kanan, lalu Publish.
<?php /* Template Name: All posts */ ?> <?php $debut = 0; //The first article to be displayed ?> <?php while(have_posts()) : the_post(); ?> <h2><?php the_title(); ?></h2> <ul> <?php $myposts = get_posts(‘numberposts=-1&offset=$debut’); foreach($myposts as $post) : ?> <li><?php the_time(‘d/m/y’) ?>: <a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li> <?php endforeach; ?> </ul> <?php endwhile; ?>