WordPress 게시물 추천 이미지 URL을 얻는 방법


144

추천 이미지를 얻기 위해이 기능을 사용하고 있습니다 :

<a href="#" rel="prettyPhoto">
    <?php the_post_thumbnail('thumbnail'); ?>
</a>

이제 추천 이미지 URL이 필요한 앵커 태그를 클릭하면 전체 추천 이미지를 가져오고 싶습니다.

<a href="here" rel="prettyPhoto">

이 문제를 어떻게 해결할 수 있습니까?

답변:


302

아래 코드를 확인하고 그것이 효과가 있는지 알려주십시오.

<?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; ?>

1
정말 감사합니다. 조건도 추가하고 싶습니다. post thumbail을 가지고 있다면 이것을 보여주고 그렇지 않으면 다른 div 또는 CSS 또는 기본 이미지에 대한 아이디어를
얻으십시오.

2
나는 그것을 만들었지 만 그것은 올바른 방법인지 모르겠다. <?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 } ?> )">
pagol

대단히 감사합니다! 이 코드는 완벽하게 작동합니다.
Calum Childs

95

다른 정보가있는 배열이 아닌 소스를 원한다면 :

<?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID), 'thumbnail' ); ?>
<img src="<?php echo $url ?>" />

 


버전 4.4.0 이상 wp_get_attachment_image_url().
Charlie Vieillard

1
이것이 바로 내가 필요한 것입니다. 전체 img src를로드합니다. 감사합니다!
killscreen

1
wp_get_attachment_image_url첨부 파일 ID (게시물 ID 아님)를 알고있는 경우에만 해당됩니다.
확실하게

나는 그것을 찾고 있었다. Thanks man :)
Arman H

19
// Try it inside loop.  
<?php
$feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
echo $feat_image;
?>

4
@ gavard.e는 실제로 : P "대신에 작동 '하지만 인용 부호는 전혀 필요하지 않습니다.
Ivanka Todorova


14

이것은 나를 위해 완벽하게 작동했습니다.

<?php echo get_the_post_thumbnail_url($post_id, 'thumbnail'); ?>

3
참고 : Wordpress 4.4.0 이후에만 사용 가능
MarcGuay

<? php echo get_the_post_thumbnail_url ($ post_id); ?> 당신은 전체 크기의 이미지를 원한다면.
yeahlad

7

나는 이것이 가장 쉬운 해결책이고 업데이트 된 것이라고 생각합니다.

<?php the_post_thumbnail('single-post-thumbnail'); ?>

상단에있는 것은 작동하지 않았습니다 (PHP 오류없이, 대중을 위해 WordPress 테마를 만들 때 원하지 않았습니다). 그러나 이것은 작동했습니다. +1
Calum Childs

6

이것이 가장 간단한 대답입니다.

<?php
    $img = get_the_post_thumbnail_url($postID, 'post-thumbnail');
?>

6

당신은 이것을 시도 할 수 있습니다 :

<?php 
    $feat_image = wp_get_attachment_url(get_post_thumbnail_id($post->ID)); 
    echo $feat_image; 
?>

이 인쇄 만 : '$ feat_image';
Stefan Yohansson

내 실수는 echo $ feat_image;
nim

4

이거 한번 해봐

<?php 
    echo get_the_post_thumbnail($post_id, 'thumbnail', array('class' => 'alignleft')); 
?>

1
get_the_post_thumbnail_url이미지 URL 만 원하는 경우 사용하십시오 .
Gavin

3

당신은 이것을 시도 할 수 있습니다.

<?php
   $image_url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
?>
<a href="<?php echo $image_url; ?>" rel="prettyPhoto">

3

다음과 같이 post_meta에서 얻을 수도 있습니다.

echo get_post_meta($post->ID, 'featured_image', true);

3

다음과 같이 이미지 첨부 파일의 URL을 얻을 수도 있습니다. 잘 작동합니다.

if (has_post_thumbnail()) {
    $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'medium'); 
}

1
<?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; ?>

1

당신은 이것을 시도 할 것입니다

<?php $url = wp_get_attachment_url(get_post_thumbnail_id($post->ID), 'full'); ?> // Here you can manage your image size like medium, thumbnail, or custom size
    <img src="<?php echo $url ?>" 
/>

1

나는 이것을 얻을 때까지 많은 것을 찾고 아무것도 찾지 못했습니다.

<?php echo get_the_post_thumbnail_url( null, 'full' ); ?>

전체 <img>태그 없이 전체 이미지 URL을 제공합니다 .

그것이 당신을 도울 수 있기를 바랍니다.


0

게시물이 이미지이고 이미지가 무엇인지 이미 알고 있다면 너무 번거 로움없이 미리보기 이미지 URL을 얻을 수 있습니다.

echo pathinfo($image->guid, PATHINFO_DIRNAME);

0

사용하다:

<?php 
    $image_src = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'thumbnail_size');

    $feature_image_url = $image_src[0]; 
?>

thumbnail_size필요한 크기에 따라 값을 변경할 수 있습니다 .


0

다음과 같이 이미지 첨부 파일의 URL을 얻을 수도 있습니다.

<?php
    "<div><a href=".get_permalink(id).">".wp_get_attachment_url(304, array(50,50), 1)."</a></div>";
?>

0

<?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; ?>

-1
<img src="<?php echo get_post_meta($post->ID, "mabp_thumbnail_url", true); ?>" alt="<?php the_title(); ?>" width ="100%" height ="" />

정교하게 할 수 있습니까?
Peter Mortensen
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.