Hello Frank and Esmi,
Thanks for your response.
In fact, for one of my client I use the thumbnail feature (which is great) but through a customized function in order to use it with the timthumb script. It’s seems easier to manage for my client.
Here is the customized function:
function get_the_image() {
$imageFull = wp_get_attachment_image_src ( get_post_thumbnail_id ( $post->ID ), 'large' );
echo $imageFull[0];
}
And the thumbnail is called like that:
<img src="<?php bloginfo('template_url'); ?>/timthumb/timthumb.php?src=<?php get_the_image(); ?>&h=200&w=600&zc=1&q=100" alt="" border="0" />
So, for a better SEO, it would be great to let my client choose the alt attribute through the dedicated field in the image properties than limiting it to the title of the post/page (as Frank suggested it).
So if someone knows the trick to retrieve the value inserted in the “alt” field of the image panel, it would be great!