WordPress根据附件ID获取文件路径函数:get_attached_file
WordPress函数get_attached_file根据附件的ID返回对应附件的完整路径。 get_att…
WordPress函数get_attached_file根据附件的ID返回对应附件的完整路径。
get_attached_file( int $attachment_id, bool $unfiltered = false )
函数参数
$attachment_id
整数
附件ID
$unfiltered
布尔值,默认值:false
是否应用过滤器。
函数返回值
/home/beizigen/htdocs/wordpress/wp-content/uploads/2020/10/theme-beizigen.webp
函数使用示例
$attachment_id = 3645; $path = get_attached_file($attachment_id); $filename = basename($path);
扩展阅读
get_attached_file()函数位于:wp-includes/post.php
相关函数:
- wp_get_upload_dir()
- get_post_meta()
- wp_attachment_is()
类别:WordPress函数讲解、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!