Cara Menampilkan Sekian Artikel Untuk Tag Tertentu

Misalkan dalam satu bulan kawan memuat artikel tentang "info cpns 2013". Dari 20 artikel yang berhubungan dengan "info cpns" di tahun 2013 kawan kumpulkan dalam satu katakunci "info cpns 2013" maka inilah kode yang kawan butuhkan.
<?php

$args=array(
'tag' => 'info-cpns-2013',
'showposts'=>22,
'caller_get_posts'=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
echo ' ';
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php
endwhile;
} //if ($my_query)
wp_reset_query(); // Restore global post data stomped by the_post().
?>

cara pemakaian:
jika tag yang kawan gunakan terdiri lebih dari dua suku kata, maka wajib kawan sisipkan tanda dash (-) misalnya untuk "info cpns 2013" menjadi "info-cpns-2013". seperti ini
'tag' => 'info-cpns-2013',

sedangkan jumlah post yang dimunculkan diubah seperti ini:
'showposts'=>22,

 
Share on Google Plus

About JackSparrow

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 komentar:

Post a Comment