本文介绍了从get_the_post_thumbnail获取图像源($ post-> ID);的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我必须从下面的代码中获取图像源。
I have to get the image source from the code below.
$thumburl = get_the_post_thumbnail($post->ID);
我在这里
<img width="325" height="202" src="http://localhost/TantraProjects/Border-fall/Repo/WebApp/wp-content/uploads/2012/12/film.png" class="attachment-post-thumbnail wp-post-image" alt="film" title="film">
我想得到这个部分。
"http://localhost/TantraProjects/Border-fall/Repo/WebApp/wp-content/uploads/2012/12/film.png"
我如何获得来源?
推荐答案
$post_thumbnail_id = get_post_thumbnail_id($post->ID);
$post_thumbnail_url = wp_get_attachment_url( $post_thumbnail_id );
这篇关于从get_the_post_thumbnail获取图像源($ post-> ID);的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!