wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
the_attachment_link › WordPress Function
Seit2.0.0
Veraltetn/v
› the_attachment_link ( $post = 0, $fullsize = false, $deprecated = false, $permalink = false )
Parameter: (4) |
|
Definiert in: |
|
Codex: |
Displays an attachment page link using an image or icon.
Ähnliche Funktionen: the_attachment_links, get_the_attachment_link, get_attachment_link, wp_get_attachment_link, _fix_attachment_links
Quellcode
function the_attachment_link( $post = 0, $fullsize = false, $deprecated = false, $permalink = false ) { if ( ! empty( $deprecated ) ) { _deprecated_argument( __FUNCTION__, '2.5.0' ); } if ( $fullsize ) { echo wp_get_attachment_link( $post, 'full', $permalink ); } else { echo wp_get_attachment_link( $post, 'thumbnail', $permalink ); } }