the_attachment_link [ WordPress Function ]
the_attachment_link ( $id = 0, $fullsize = false, $deprecated = false, $permalink = false )
| Parameters: |
|
| Defined at: |
|
Similar Functions: the_attachment_links, get_the_attachment_link, get_attachment_link, wp_get_attachment_link, _fix_attachment_links
Display an attachment page link using an image or icon.
Source
<?php
function the_attachment_link( $id = 0, $fullsize = false, $deprecated = false, $permalink = false ) {
if ( !empty( $deprecated ) )
_deprecated_argument( __FUNCTION__, '2.5' );
if ( $fullsize )
echo wp_get_attachment_link($id, 'full', $permalink);
else
echo wp_get_attachment_link($id, 'thumbnail', $permalink);
}
?>
Examples [ wp-snippets.com ]
Top Google Search Results
- Function Reference/the attachment link « WordPress Codex
Description. Outputs an HTML hyperlink to an attachment file or page, containing either. A full size image or thumbnail for image attachments; or; The ...
codex.wordpress.org - WordPress › Support » Function: the_attachment_link ()
I'm working on a WP template and I would like make a feature in which the first image of a post is shown and the excerpt of the post is overlapped to the image ...
wordpress.org - WordPress › Support » Tags — the_attachment_link
WordPress › Support » the_attachment_link. Tag: the_attachment_link Add New » ... A list of .pdf docs using the_attachment_link, open in target blank?
wordpress.org - php - How to remove link around the_attachment_link image in ...
This is what I have in the loop that grabs the posts and displays them ... what about this: <?php echo wp_get_attachment_url( $id ); ?> outputs ...
stackoverflow.com
User discussions [ wordpress.org ]
- AardvarkGirl on "A list of .pdf docs using the_attachment_link, open in target blank?"
- MDavid-ITA on "Function: the_attachment_link ()"
- MDavid-ITA on "Function: the_attachment_link ()"
- esmi on "Function: the_attachment_link ()"
- MDavid-ITA on "Function: the_attachment_link ()"
- Micah Cooksey on "Get all images from a page or a post within the loop"
- cooperanet on "Get all images from a page or a post within the loop"
- tpc on "Customizing the_title(): below an image, before post content"
- tpc on "Customizing the_title(): below an image, before post content"
- kobewolfe on "Customizing the_title(): below an image, before post content"