LoginSignup
0
0

More than 5 years have passed since last update.

アイキャッチを表示させ、投稿のタイトルをaltに設定する方法

Posted at

アイキャッチだけ表示したかったら、↓

<?php the_post_thumbnail(); ?>

プラス サイズを指定する場合は↓
中サイズで出現。

<?php the_post_thumbnail('medium'); ?>

アイキャッチにaltとtitleを表示したかったら、↓

<?php 
$title= get_the_title();
the_post_thumbnail(array( 300,99999 ),
array( 'alt' =>$title, 'title' => $title)); 
?>

この「300」は、300px以下に統一するという意味。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0