groups

name language licence
WORDPRESS EXCLUDE CAT FROM FRONTPAGE PHP BSD
Change The Default Wordpress Excerpt [...] PHP BSD
Wordpress Page Loop PHP BSD
Wordpress: Page With Content From Only A Particular Category PHP BSD
LOADING JAVASCRIPT LIBRARIES IN WORDPRESS GENERATED PAGE PHP BSD
Current Page Item PHP BSD
DISPLAY THE FIRST IMAGE ATTACHMENT OF A WORDPRESS POST PHP BSD
WORDPRESS TEMPLATE URL PHP BSD

< 1 2 3 4 5 6 7 8 9 10 11 12 >



language: PHP
licence: BSD

DISPLAY THE FIRST IMAGE ATTACHMENT OF A WORDPRESS POST

options: view full snippetsend to code collector
<?php
$attachments = get_children(array('post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order'));
if ( ! is_array($attachments) ) continue;
$count = count($attachments);
$first_attachment = array_shift($attachments);
?>
<?php echo wp_get_attachment_image($first_attachment->ID); ?>
	
(Continues...)