将帖子标题插入缩略图链接的标题标签中

时间:2014-02-01 19:53:06

标签: php wordpress

这就是我所拥有的,并且我能够将帖子标题插入缩略图的标题值,但我希望将其插入到包围它的链接的标题值中。

add_filter('wp_get_attachment_image_attributes', 'my_img_title', 10, 2);
function my_img_title($attr, $attachment = null){
    $attr['title'] = get_post($title)->post_title;
    return $attr;
}

1 个答案:

答案 0 :(得分:2)

我希望这会有所帮助:

   <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >

    <!--Your Thumbnail tag goes here--->

    </a>