How to get WordPress post featured image url

2019-01-10 02:07发布

I am using a this function to get the featured images

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

now i want to get the full featured image on click on anchor tag for which i need a featured image url in

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

please help

18条回答
ら.Afraid
2楼-- · 2019-01-10 02:35

you can also use for getting the url for image attachments as follows:

<?php
"<div><a href=".get_permalink(id).">".wp_get_attachment_url(304, array(50,50), 1)."</a></div>";
?>
查看更多
对你真心纯属浪费
3楼-- · 2019-01-10 02:35

If you want JUST the source, and not an array with other information:

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

 

查看更多
Juvenile、少年°
4楼-- · 2019-01-10 02:35

You can try this:

<?php 
$feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); 
echo $feat_image; 
?>
查看更多
Anthone
5楼-- · 2019-01-10 02:36
<img src="<?php echo get_post_meta($post->ID, "mabp_thumbnail_url", true); ?>" alt="<?php the_title(); ?>" width ="100%" height ="" />
查看更多
成全新的幸福
6楼-- · 2019-01-10 02:37

You can try this.

<?php
   $image_url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
?>
<a href="<?php echo $image_url; ?>" rel="prettyPhoto">
查看更多
We Are One
7楼-- · 2019-01-10 02:39

This is the most simplest answer. <?php $img = get_the_post_thumbnail_url($postID,'post-thumbnail' ); ?>

查看更多
登录 后发表回答