wp_get_attachment_metadata [ WordPress Function ]
wp_get_attachment_metadata ( $post_id = 0, $unfiltered = false )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Soorgelijke functies: wp_generate_attachment_metadata, wp_update_attachment_metadata, wp_get_attachment_image, wp_get_attachment_url, wp_get_attachment_link
Retrieve attachment meta field for attachment ID.
Source
<?php
function wp_get_attachment_metadata( $post_id = 0, $unfiltered = false ) {
$post_id = (int) $post_id;
if ( !$post =& get_post( $post_id ) )
return false;
$data = get_post_meta( $post->ID, '_wp_attachment_metadata', true );
if ( $unfiltered )
return $data;
return apply_filters( 'wp_get_attachment_metadata', $data, $post->ID );
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- Function Reference/wp get attachment metadata « WordPress Codex
Function Reference/wp get attachment metadata ... Usage. <?php wp_get_attachment_metadata( $post_id, $unfiltered ); ?> ...
codex.wordpress.org - WordPress › Support » Tags — wp_get_attachment_metadata
Topic, Posts, Last Poster, Freshness. Media Info - alternatives to wp_get_attachment_metadata, 1, johnbeardy, 3 months. Search Everything Plugin: Attachment ...
wordpress.org - #11896 (wp_get_attachment_metadata not grabbing some ...
I created a function to retrieve some of the uploaded images, and I wanted to use wp_get_attachment_metadata to grab some of the attachements metadata.
core.trac.wordpress.org - Easier And Better Solutions To Get Pictures On Your Posts - WP ...
Oct 20, 2009 ... This we do with the function wp_get_attachment_metadata() . This function returns quite a lot of data and we can access the size of images, ...
wpengineer.com
Gebruikersdiscussies [ wordpress.org ]
- johnbeardy on "Media Info - alternatives to wp_get_attachment_metadata"
- publicradio on "Search Everything Plugin: Attachment Metadata not in search results"
- jagallagher on "Problem with wp_get_attachment_metadata"
- jagallagher on "Problem with wp_get_attachment_metadata"
- jomccartin on "Search Everything Plugin: Attachment Metadata not in search results"
- eniris on "Search Everything Plugin: Attachment Metadata not in search results"
- llaughy on "Search Everything Plugin: Attachment Metadata not in search results"
- llaughy on "Adding Image metadata to my child theme"
- Matthew on "Getting attachment width for medium size"
- Matthew on "Getting attachment width for medium size"