2013-04-09 53 views
0

我現在有改變陣列顯示the_title WordPress的

<?php 
    $attr = array(
     'title' => 'here is a title', 
     'alt' => 'here is a alt attribute' 
    ); 
?> 
    div class="s-o-column"> 
     <div class="s-o-thumb"><a href="<?php echo $termlink; ?>"><?php echo wp_get_attachment_image($term->image_id, 'standard-options-thumb', false, $attr ); ?></a> 
     <div class="s-o-title"><a href="<?php echo $termlink; ?>"><?php echo $term->name; ?></a></div> 
    </div> 
</div> 

我如何改變它,標題和alt的說; <?php the_title(); ?>而不是「這是一個標題」或「這是一個ALT屬性」?

+0

你能對你的問題更加清楚一點..我還沒有得到它.. – 2013-04-09 04:40:28

+0

好了,numbnails現在的標題,並在陣列中提供ALTS顯示,我想,但數組檢測帖子標題或縮略圖的標題並替換。 – Eddie 2013-04-09 04:41:43

回答

1

您應該使用get_the_title()而不是the_title(),因爲get_the_title()返回標題,而the_title()會迴應它。

$attr = array(
    'title' => get_the_title(), 
    'alt' => 'here is a alt attribute' 
);