load_image_to_edit_attachmenturl

过滤钩子
apply_filters( 'load_image_to_edit_attachmenturl', wp_get_attachment_url( $attachment_id )
参数
  • (string|false) $image_url Current image URL.
    Required:
  • (int) $attachment_id Attachment ID.
    Required:
  • (string|int[]) $size Requested image size. Can be any registered image size name, or an array of width and height values in pixels (in that order).
    Required:
定义位置
相关勾子
load_image_to_edit_pathload_image_to_editload_image_to_edit_filesystempathwp_header_image_attachment_metadataget_edit_comment_link
相关方法
_load_image_to_edit_pathload_image_to_editwp_get_attachment_urlwp_edit_attachments_queryget_the_attachment_linkwp_get_attachment_thumb_url
引入
3.1.0
弃用
-

load_image_to_edit_attachmenturl: 这个函数根据附件的ID返回附件的URL。它用于生成在媒体库中正在编辑的图片的URL。

编辑图像时过滤附件URL的路径。

仅当文件未存储在本地且服务器上启用了allow_url_fopen时,才会评估筛选器。

$filepath = apply_filters( 'load_image_to_edit_attachmenturl', wp_get_attachment_url( $attachment_id ), $attachment_id, $size );

常见问题

FAQs
查看更多 >