回答:
以下のコードを確認し、問題なく機能するかどうかお知らせください。
<?php if (has_post_thumbnail( $post->ID ) ): ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>
<div id="custom-bg" style="background-image: url('<?php echo $image[0]; ?>')">
</div>
<?php endif; ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?> <div class="section bannerarea cashstudybanner" style="background-image: url( <?php if ( has_post_thumbnail() ) { echo $image[0]; } else { ?> <?php bloginfo('template_directory'); ?>/images/common-banner.jpg <?php } ?> )">
他の情報を含む配列ではなく、ソースだけが必要な場合:
<?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID), 'thumbnail' ); ?>
<img src="<?php echo $url ?>" />
wp_get_attachment_image_url()
。
wp_get_attachment_image_url
(投稿IDではなく)添付ファイルIDがわかっている場合にのみ適用されます。
// Try it inside loop.
<?php
$feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
echo $feat_image;
?>
"
には'
:Pの代わりに機能しますが、引用符はまったく必要ありません。
簡単な方法!
<?php
wp_get_attachment_url(get_post_thumbnail_id(get_the_ID()))
?>
これは私にとって完璧に機能しました:
<?php echo get_the_post_thumbnail_url($post_id, 'thumbnail'); ?>
私はこれが最も簡単な解決策であり、更新されたものだと思います:
<?php the_post_thumbnail('single-post-thumbnail'); ?>
これが最も簡単な答えです。
<?php
$img = get_the_post_thumbnail_url($postID, 'post-thumbnail');
?>
あなたはこれを試すことができます:
<?php
$feat_image = wp_get_attachment_url(get_post_thumbnail_id($post->ID));
echo $feat_image;
?>
<?php
if (has_post_thumbnail( $post->ID ) ):
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
?>
<img src="<?php echo $image[0]; ?>">
<?php endif; ?>
使用する:
<?php
$image_src = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'thumbnail_size');
$feature_image_url = $image_src[0];
?>
thumbnail_size
必要なサイズに応じて値を変更できます。
次のように、画像の添付ファイルのURLを取得することもできます。
<?php
"<div><a href=".get_permalink(id).">".wp_get_attachment_url(304, array(50,50), 1)."</a></div>";
?>
単純にループの中に<?php the_post_thumbnail_url(); ?>
以下のように書いてください:-
$args=array('post_type' => 'your_custom_post_type_slug','order' => 'DESC','posts_per_page'=> -1) ;
$the_qyery= new WP_Query($args);
if ($the_qyery->have_posts()) :
while ( $the_qyery->have_posts() ) : $the_qyery->the_post();?>
<div class="col col_4_of_12">
<div class="article_standard_view">
<article class="item">
<div class="item_header">
<a href="<?php the_permalink(); ?>"><img src="<?php the_post_thumbnail_url(); ?>" alt="Post"></a>
</div>
</article>
</div>
</div>
<?php endwhile; endif; ?>
<img src="<?php echo get_post_meta($post->ID, "mabp_thumbnail_url", true); ?>" alt="<?php the_title(); ?>" width ="100%" height ="" />