投稿サムネイルタグ– tag –
-
画像関連のカスタマイズ
WordPressで投稿した画像をランダムに表示する方法
WordPressで構築したサイトのトップページに、今まで投稿した画像をランダムに表示する方法です。 実は、get_postsを使用する事で、簡単に出来てしまいます。 下記は、画像を投稿した記事リンク付きの画像のみの表示となります。 numberpostsには、表示し... -
投稿サムネイルタグ
get_post_thumbnail_id
サムネイルが設定されている場合 - 記事に添付されているサムネイルIDを返します。 添付ファイルが存在しない場合、関数はnull を返します(空の値)。 If a thumbnail is set - Returns the ID of the Thumbnail attached to the post If no such attachm... -
投稿タグ
get_the_post_thumbnail
投稿またはページの編集画面内の設定したように投稿サムネイルを取得します。サムネイル画像は"attachment-thumbnail"クラスを与えられます。 Gets Post Thumbnail as set in post's or page's edit screen. Thumbnail images are given class "attachment... -
投稿サムネイルタグ
has_post_thumbnail
投稿に添付された画像が(true)かない(false)場合、booleanの値を返します。 注:ポストのサムネイルが有効にするには、現在のテーマのはfunctions.php ファイルにadd_theme_support( 'post-thumbnails' );を含めなければなりません。 Returns a boolean if... -
投稿サムネイルタグ
the_post_thumbnail
記事の編集画面で設定する投稿サムネイルを表示します。サムネイル画像は"attachment-thumbnail"クラスを与えられます。 投稿サムネイルを有効にするには、現在のテーマのfunctions.phpファイルにadd_theme_support( 'post-thumbnails' );を含まなければな...
1