我正在为“垃圾箱”中的某些帖子生成查询。我可以检索特色图像 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" ?
}
Run Code Online (Sandbox Code Playgroud)
我找不到任何返回实际特色图像文件位置的 WordPress 函数。