WordPress 게시물의 피처 이미지 URL을 얻는 방법
이 기능을 사용하여 특집 이미지를 가져옵니다.
<a href="#" rel="prettyPhoto">
<?php the_post_thumbnail('thumbnail'); ?>
</a>
이제 이미지 URL이 필요한 앵커 태그를 클릭해서 전체 이미지를 가져오고 싶습니다.
<a href="here" rel="prettyPhoto">
어떻게 하면 고칠 수 있을까요?
아래 코드를 확인하고 당신에게 적합한지 알려주세요.
<?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 $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID), 'thumbnail' ); ?>
<img src="<?php echo $url ?>" />
// Try it inside loop.
<?php
$feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
echo $feat_image;
?>
쉬운 방법!
<?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
echo get_the_post_thumbnail($post_id, 'thumbnail', array('class' => 'alignleft'));
?>
이것까지 찾아봤지만 아무것도 못 찾았어요.
<?php echo get_the_post_thumbnail_url( null, 'full' ); ?>
전체 이미지 URL을 입력하기만 하면 전체 이미지 URL 전체를 입력하지 않아도 됩니다.<img>
태그를 붙입니다.
도움이 되길 바랍니다.
이거 드셔보세요.
<?php
$image_url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
?>
<a href="<?php echo $image_url; ?>" rel="prettyPhoto">
post_meta에서 다음과 같이 얻을 수도 있습니다.
echo get_post_meta($post->ID, 'featured_image', true);
또한 다음과 같이 이미지 첨부 URL을 얻을 수 있습니다.잘 되고 있어요.
if (has_post_thumbnail()) {
$image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'medium');
}
이거 드셔보세요
<?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 ?>"
/>
<?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; ?>
투고가 이미지이고 이미지가 무엇인지 이미 알고 있다면, 큰 번거로움 없이 썸네일 URL을 얻을 수 있습니다.
echo pathinfo($image->guid, PATHINFO_DIRNAME);
루프 쓰기만 하면 됩니다.<?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; ?>
용도:
<?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>";
?>
특정 크기의 이미지 src는 다음 방법으로 얻을 수 있습니다.wp_get_attachment_url
기능.
<?php
$url = wp_get_attachment_url( get_post_thumbnail_id($post->ID), 'full' );
?>
<img src="<?php echo $url ?>" />
게시 썸네일에서 전체 이미지 크기를 가져오려면 이 코드를 사용할 수 있습니다.
$img_url = wp_get_attachment_image_url(get_post_thumbnail_id(get_the_ID()), 'full');
<img src="<?PHP echo $img_url?> ">
자, 가져와.ID()는 Post ID 입니다.
<img src="<?php echo get_post_meta($post->ID, "mabp_thumbnail_url", true); ?>" alt="<?php the_title(); ?>" width ="100%" height ="" />
언급URL : https://stackoverflow.com/questions/11261883/how-to-get-wordpress-post-featured-image-url
'programing' 카테고리의 다른 글
선과 수평축 사이의 각도는 어떻게 계산하나요? (0) | 2022.09.22 |
---|---|
Laravel DB:select()는 그룹 내의 모든 열을 다음과 같이 요구합니다. (0) | 2022.09.22 |
Eclipse에서 Maven 종속성을 추가하려면 어떻게 해야 합니까? (0) | 2022.09.22 |
스프링 저장소 내에서 원시 SQL을 사용할 수 있습니까? (0) | 2022.09.22 |
부울 필드 인덱싱 (0) | 2022.09.22 |