我目前有
<?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 属性”?