更改数组以显示the_title Wordpress

时间:2013-04-09 04:38:15

标签: php 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>

如何更改标题和替代标题; <?php the_title(); ?>代替“这里是标题”或“这里是alt属性”?

1 个答案:

答案 0 :(得分:1)

您应该使用get_the_title()代替the_title(),因为get_the_title()会在the_title()回复标题时返回标题。

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