- 赤色のリンクは、まだ日本語Codexに存在しないページ・画像です。英語版と併せてご覧ください。(詳細)
テンプレートタグ/wp get attachment link
目次
Description
Returns an HTML hyperlink to an attachment file or page, containing either
- An image at some specified size, for image attachments; or
- A media icon (as specified) representing the attachment; or
- The attachment's title (as text) or
- Your own text
If no such attachment exists, the function returns the string Missing Attachment.
Usage
%%%<?php wp_get_attachment_link( $id, $size, $permalink, $icon, $text ); ?>%%%
Default Usage
<?php echo wp_get_attachment_link( 13 ); ?>
To get attachment IDs dynamically in a template, you would probably use something like get_children().
Parameters
- $id
- (integer) (Optional) ID of the desired attachment.
- 初期値: The current post ID, when used in The Loop (Must be a loop showing only attachments).
- $size
- (string/array) (Optional) Image size. Either a string keyword (thumbnail, medium, large or full) or a 2-item array representing width and height in pixels, e.g. array(32,32). As of Version 2.5, this parameter does not affect the size of media icons, which are always shown at their original size.
- 初期値: 'thumbnail'
- $permalink
- (boolean) (Optional) Link directly to the attachment file/image (Default), or to the attachment page.
- 初期値: 'False'
- 1 (True)
- 0 (False) - Default
- $icon
- (boolean) (Optional) Use a media icon to represent the attachment.
- 初期値: 'False'
- 1 (True)
- 0 (False) - Default
- $text
- (string) (Optional) Displays a text link to the attachment.
- 初期値: 'false'
Examples
Show Medium Size Attachment.
The default image sizes of WordPress are "thumbnail", "medium", "large" and "full" (the image you uploaded). These image sizes can be configured in the WordPress Administration Media panel under Settings > Media.
<?php $id = 9; // ID of an attachment echo wp_get_attachment_link( $id, 'medium' ); ?>
Link Attachment to Post
This example will link the attachment to an attachment Page.
<?php $id = 9; // ID of an attachment echo wp_get_attachment_link( $id, 'thumbnail', true ); ?>
Link Text to Attachment
This example returns an HTML hyperlink with "My link text" linking to an attachment file.
<?php $id = 9; // ID of an attachment echo wp_get_attachment_link( $id, '' , false, false, 'My link text' ); ?>
Link Post Title to Attachment
This example returns an HTML hyperlink with the post title linking to an attachment file.
<?php $id = 9; // ID of an attachment echo wp_get_attachment_link( $id, '' ); ?>
Change Icon Directory
WordPress can use media icons to represent attachment files on your blog and in the Admin interface, if those icons are available. For images it returns the thumbnail. For other media types It looks for image files named by media type (e.g. audio.jpg) in the directory: wp-includes/images/crystal/.
This example shows how you can change this directory to a folder called "images" in your theme: wp-content/themes/yourtheme/images. Create the folder and put the "media type images" in there. To tell WordPress the directory has changed put this in the current theme's functions.php file:
add_filter( 'icon_dir', 'my_theme_icon_directory' ); add_filter( 'icon_dir_uri', 'my_theme_icon_uri' ); function my_theme_icon_directory( $icon_dir ) { return get_stylesheet_directory() . '/images'; } function my_theme_icon_uri( $icon_dir ) { return get_stylesheet_directory_uri() . '/images'; }
Notes
Use wp_get_attachment_image() if you want the image only (not a hyperlink).
Change Log
Since: 2.5.0
Source File
wp_get_attachment_link() is located in wp-includes/post-template.php
.
Related
添付ファイル関数: get_children(), get attached media(), the_attachment_link(), get_attachment_link(), wp_get_attachment_link(), wp_get_attachment_image(), wp_get_attachment_image_src(), wp_get_attachment_url(), wp_get_attachment_thumb_file(), wp_get_attachment_thumb_url(), is_attachment(), wp_get_attachment_metadata()