【发布时间】:2018-03-03 23:17:28
【问题描述】:
我正在为“垃圾箱”中的某些帖子生成查询。我可以检索特色图片 URL,但我正在寻找一种方法来获取服务器上的特色图片文件位置。
# generate the query
foreach ( $query as $post ) {
$thumbID = get_post_thumbnail_id( $post->ID );
$thumbObj = get_post( $thumbID );
$source_url = $thumbObj->guid;
# how do I get the string "/path/to/wordpress/media/library/thumbnail.jpg" ?
}
我找不到任何返回实际特色图像文件位置的 WordPress 函数。
【问题讨论】:
-
你的意思是这样的:codex.wordpress.org/Function_Reference/… wp_get_attachment_image_src