سلام
من از فانگشن زیر برای لود کردن تصاویر بندانگشتیم استفاده می کنم که اولین تصویر رو در بند انگشتی قرار می ده اما اسم عکس رو به عنوان alt قرار میده که من می خوام عنوان مطلبم قرار بگیره
چیکار باید بکنم ؟
<?php
function aldenta_get_post_image($size = 'thumbnail') {
global $post;
$photos = get_children( array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID') );
if ($photos) {
$photo = array_shift($photos);
return wp_get_attachment_image($photo->ID, $size);
}
else{
return '<img src="'.get_bloginfo('template_url').'/images/no-pic.jpg" border="0" />';
}
return false;
}
?>