wordpress取特色图片src

熟悉 WordPress 的朋友们都知道可以在后台设置一张特色图片作为日志缩略图,可以通过

调用,但是 WordPress 官方却没有给我这张图片的 src 地址,那么在有获取地址需求的情况下,我们如何获取这张特色图片的 src 地址呢?

方法一:

<?php the_title();?>

方法二:

将下面的代码复制到当前主题的 functions.php 中:

function get_post_thumbnail_url($post_id){
        $post_id = ( null === $post_id ) ? get_the_ID() : $post_id;
        $thumbnail_id = get_post_thumbnail_id($post->ID);
        if($thumbnail_id ){
                $thumb = wp_get_attachment_image_src($thumbnail_id, 'thumbnail');
                return $thumb[0];
        }else{
                return false;
        }
}

 

使用下面方法调用:

<?php the_title();?>

 

你可能感兴趣的:(wordpress)