MENU

has_post_thumbnail

投稿に添付された画像が(true)かない(false)場合、booleanの値を返します。

注:ポストのサムネイルが有効にするには、現在のテーマのはfunctions.php ファイルにadd_theme_support( ‘post-thumbnails’ );を含めなければなりません。

Returns a boolean if post has an image attached (true) or not (false).

Note: To enable post thumbnails, the current theme must include add_theme_support( ‘post-thumbnails’ ); in its functions.php file.

目次

has_post_thumbnailのテンプレートタグ使用方法

[php] [/php]

has_post_thumbnailのパラメーター

post_id

(integer) (optional)ポストIDです。

(integer) (optional) Post ID.

Default: ‘ID’, the post ID.

このスクリプトがある場合、実際には、記事にサムネイル表示させます。それがない場合は、デフォルトの画像を配置します。

This script asks if there is, actually, a thumbnail in the post. If it’s not, it will put a default image.

[php]‘;
}
?>[/php]

変更ログ

Since: 2.9.0

ソースファイル

has_post_thumbnail()は、下記に位置しています。

has_post_thumbnail() is located in

  • wp-includes/post-thumbnail-template.php (the latest stable version)
  • wp-includes/post-thumbnail-template.php (the development version)

関連テンプレートタグ

has_post_thumbnail, the_post_thumbnail, get_post_thumbnail_id, get_the_post_thumbnail

よかったらシェアしてね!
  • URLをコピーしました!

この記事を書いた人

WordPress Love! 休日はほぼWordPress仲間と一緒に勉強会や写真を撮りに行っています。現在育児中のため、オフが多いです(>△<<<)

コメント

コメントする

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください

目次