Add title="" to A PHP Code 时间:2011-08-02 作者:AndrettiMilas 我正在使用代码调用WP缩略图,并希望添加一个title=”标记。我希望标题调用\\u标题。。。我该怎么做?我想为图片指定标题,而不是链接。我的代码:<?php if ( has_post_thumbnail() ) { the_post_thumbnail( \'thmb-archive\' ); } ?> 1 个回复 最合适的回答,由SO网友:kevin 整理而成 使用可用的参数the_post_thumbnail() 功能如中所述codex.Edit: 刚刚用这个做了一个测试,它对我起了作用:$post_title = the_title( \'\', \'\', false);//get the title $attr = array(\'title\' => $post_title);//set the parameter the_post_thumbnail(\'full\', $attr);//call the function 结束 文章导航