get_attachment_icon_src [ WordPress-Funktionen ]
get_attachment_icon_src ( $id = 0, $fullsize = false )
| Parameter: |
|
| Siehe: | |
| Gibt zurück: |
|
| Definiert in: |
|
| Codex |
Ähnliche Funktionen: get_attachment_icon, get_attachment_link, wp_get_attachment_image_src, get_attachment_innerhtml, wp_get_attachment_link
Retrieve icon URL and Path.
Quellcode
function get_attachment_icon_src( $id = 0, $fullsize = false ) {
_deprecated_function( __FUNCTION__, '2.5', 'wp_get_attachment_image_src()' );
$id = (int) $id;
if ( !$post = get_post($id) )
return false;
$file = get_attached_file( $post->ID );
if ( !$fullsize && $src = wp_get_attachment_thumb_url( $post->ID ) ) {
// We have a thumbnail desired, specified and existing
$src_file = basename($src);
$class = 'attachmentthumb';
} elseif ( wp_attachment_is_image( $post->ID ) ) {
// We have an image without a thumbnail
$src = wp_get_attachment_url( $post->ID );
$src_file = & $file;
$class = 'attachmentimage';
} elseif ( $src = wp_mime_type_icon( $post->ID ) ) {
// No thumb, no image. We'll look for a mime-related icon instead.
$icon_dir = apply_filters( 'icon_dir', get_template_directory() . '/images' );
$src_file = $icon_dir . '/' . basename($src);
}
if ( !isset($src) || !$src )
return false;
return array($src, $src_file);
}Beispiele [ wp-snippets.com ]
Top Google Suchergebnisse
- get_attachment_icon_src (WordPress Function) - WPSeek.com
Retrieve icon URL and Path. WordPress lookup for get_attachment_icon_src, a WordPress Function.
wpseek.com - get_attachment_icon (WordPress Function) - WPSeek.com
Similar Functions: get_attachment_icon_src, get_attachment_link, ... src = get_attachment_icon_src( $post->ID, $fullsize ) ) return false; list($src, $src_file) = $src ...
wpseek.com - get_attachment_innerhtml (WordPress Function) - WPSeek.com
Formally deprecates 10 functions: get_attachment_innerHTML, get_attachment_icon, get_attachment_icon_src, get_the_attachment_link, ngettext_noop, .
wpseek.com - #11388 (Deprecated functions: Formally deprecate and/or move to ...
Move to deprecated.php, improve phpdoc, and add _deprecated_function() call -- get_the_attachment_link() get_attachment_icon_src() get_attachment_icon() ...
core.trac.wordpress.org
