次のコード:PHP: "タイトル" に ')(the_title' を挿入& "altが" 'the_post_thumbnail'(ワードプレス)の属性はできません
<?php if (has_post_thumbnail()) : ?>
<?php $attr = 'Is ' . the_title() . ' a good computer?'; ?>
<p><?php the_post_thumbnail('medium', ['title' => $attr, 'alt' => $attr]); ?></p>
<?php endif; ?>
は出力を生成します。
<p><img width="300" height="300" src="http://www.example.com/wp-content/uploads/2016/04/image.jpg" alt="Is a good computer?" title="Is a good computer?" ></p>
the_title()
はなぜ含まれていませんか?
ヘルプありがとうございます。
は、あなたが() 'the_titleと' get_the_title() ''との違いに見たいと思うかもしれません。このような複数のワードプレス機能があります。 'get_'で始まる関数は値を返し、値を返さないものは – Andrew