<?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,
0 komentar:
Post a Comment