wpseek.com
A WordPress-centric search engine for devs and theme authors
get_the_attachment_link is deprecated since version 2.5.0!
Alternative: wp_get_attachment_link()
Alternative: wp_get_attachment_link()
get_the_attachment_link › WordPress Function
Since2.0.0
Deprecated2.5.0
› get_the_attachment_link ( $id = 0, $fullsize = false, $max_dims = false, $permalink = false )
| Parameters: (4) |
|
| See: | |
| Returns: |
|
| Defined at: |
|
| Codex: |
Retrieve HTML content of attachment image with link.
Related Functions: the_attachment_link, get_attachment_link, the_attachment_links, wp_get_attachment_link, get_attachment_icon
Source
function get_the_attachment_link($id = 0, $fullsize = false, $max_dims = false, $permalink = false) {
_deprecated_function( __FUNCTION__, '2.5.0', 'wp_get_attachment_link()' );
$id = (int) $id;
$_post = get_post($id);
if ( ('attachment' != $_post->post_type) || !$url = wp_get_attachment_url($_post->ID) )
return __('Missing Attachment');
if ( $permalink )
$url = get_attachment_link($_post->ID);
$post_title = esc_attr($_post->post_title);
$innerHTML = get_attachment_innerHTML($_post->ID, $fullsize, $max_dims);
return "<a href='$url' title='$post_title'>$innerHTML</a>";
}