wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
set_post_thumbnail › WordPress Function
Seit3.1.0
Veraltetn/v
› set_post_thumbnail ( $post, $thumbnail_id )
Parameter: (2) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Sets the post thumbnail (featured image) for the given post.
Ähnliche Funktionen: the_post_thumbnail, has_post_thumbnail, set_post_thumbnail_size, delete_post_thumbnail, get_post_thumbnail_id
Quellcode
function set_post_thumbnail( $post, $thumbnail_id ) { $post = get_post( $post ); $thumbnail_id = absint( $thumbnail_id ); if ( $post && $thumbnail_id && get_post( $thumbnail_id ) ) { if ( wp_get_attachment_image( $thumbnail_id, 'thumbnail' ) ) { return update_post_meta( $post->ID, '_thumbnail_id', $thumbnail_id ); } else { return delete_post_meta( $post->ID, '_thumbnail_id' ); } } return false; }