我当前正在使用<?php the_post_thumbnail(\'250px\', array(\'class\'=>"review-siteshot", \'alt\' => get_the_title() )); ?>
我知道\'alt\' => "review"
将审查输出为所有文本。
我想用get_the_title()
再加上“复习”让我title-text review 作为缩略图的alt文本。
最合适的回答,由SO网友:Lazar Momcilovic 整理而成
像这样:
\'alt\' => get_the_title(). \' review\'
所以完整的代码是:
<?php the_post_thumbnail(\'250px\', array(\'class\'=>"review-siteshot", \'alt\' => get_the_title(). \' review\' )); ?>