wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



load_image_to_edit_attachmenturl › Hooks de Filtros WordPress

Desde3.1.0
Obsoleton/a
apply_filters( 'load_image_to_edit_attachmenturl', wp_get_attachment_url( $attachment_id )
Parâmetros: (3)
  • (string|false) $image_url Current image URL.
    Required: Yes
  • (int) $attachment_id Attachment ID.
    Required: Yes
  • (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: Yes
Definido em:
Codex:

Filters the path to an attachment's URL when editing the image.

The filter is only evaluated if the file isn't stored locally and allow_url_fopen is enabled on the server.





Fonte

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