WordPressコアには4つの有効なサイズが組み込まれています。
the_post_thumbnail('thumbnail'); // Thumbnail (default 150px x 150px max)
the_post_thumbnail('medium'); // Medium resolution (default 300px x 300px max)
the_post_thumbnail('large'); // Large resolution (default 640px x 640px max)
the_post_thumbnail('full'); // Original image resolution (unmodified)
最後はあなたが探しているものです。
次のコードは、URLを返します。 フルサイズ
使用できる
ブログイメージため
<?php if (has_post_thumbnail())
$imageUrl = wp_get_attachment_image_src(get_post_thumbnail_id(),'full');?>
<img alt="Post Thumbnail" src="<?php echo esc_url($imageUrl[0]); ?>">
-
<?php if (has_post_thumbnail($post->ID)): ?>
<?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'single-post-thumbnail'); ?>
<img alt="Post Thumbnail" src="<?php echo esc_url($imageUrl[0]); ?>">
<?php endif; ?>
あなたがコードにセットの画像サイズにしたい場合は、function.phpファイルに次のコードを使用することができます
<?php add_image_size('product-size-large',300, 500, true);?>
より多くのオプションがCodexを見るために はその後、またここに
<?php $imageUrl = wp_get_attachment_image_src(get_post_thumbnail_id(),'product-size-large'); ?>
をこのサイズを使用します。
である。しかし、これは唯一のポストthumnails /フォト・画像用で、そうではありませんか?私は記事の画像のために何かが必要です。 – user6573193