2011-10-05 87 views
0

內的電流I類有這樣的循環:獲取WordPress的循環

<?php while (have_posts()) : the_post(); ?> 
    <li><h2 class="titles"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2></li> 
    <li><span class="post-date">Posted <?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?></span><span class="post-cat">Filed under: <?php the_category(', ') ?> by <?php the_author(); ?></span></li> 
    <li><p><?php the_excerpt(); ?></p></li> 
    <div class="voting"><?php DisplayVotes(get_the_ID()); ?></div> 
<?php endwhile;?> 

我只想把這個線<div class="voting"><?php DisplayVotes(get_the_ID()); ?></div>只有當循環被引用某一類,即。 if(category =='birthdays')然後輸出這一行。

我知道如何做一個if語句,但我放入什麼樣的條件?

回答

3

使用get_the_category功能

global $post; 
$categories = get_the_category($post->ID); 
var_dump($categories);