如何在缩略图数组的‘alt’上使用Get_the_Title文本?

时间:2019-08-24 作者:Bikram

我当前正在使用<?php the_post_thumbnail(\'250px\', array(\'class\'=>"review-siteshot", \'alt\' => get_the_title() )); ?>

我知道\'alt\' => "review" 将审查输出为所有文本。

我想用get_the_title() 再加上“复习”让我title-text review 作为缩略图的alt文本。

2 个回复
最合适的回答,由SO网友:Lazar Momcilovic 整理而成

像这样:

\'alt\' => get_the_title(). \' review\'
所以完整的代码是:

<?php the_post_thumbnail(\'250px\', array(\'class\'=>"review-siteshot", \'alt\' => get_the_title(). \' review\' )); ?>

SO网友:Nicolai Grossherr

功能the_title() 可用于附加字符串并返回,而不是回显:

the_title( \'\', \' review\', 0 )
如果需要剥离标签和转义,功能the_title_attribute() 可用于:

the_title_attribute( [ \'after\' => \' review\', \'echo\' => 0 ] )

相关推荐