Ver Mensaje Individual
  #4 (permalink)  
Antiguo 09/11/2011, 07:43
Avatar de AlZuwaga
AlZuwaga
Colaborador
 
Fecha de Ingreso: febrero-2001
Ubicación: 34.517 S, 58.500 O
Mensajes: 14.550
Antigüedad: 23 años, 2 meses
Puntos: 535
Respuesta: Asignar ID a Thumbnails

Bueno, si bien en la página del codex sobre la función the_post_thumbnail() no hace referencia explícita al id cuando habla de los atributos ($attr), igualmente es posible:

Código:
<?php
if ( has_post_thumbnail() ) {
$attr = array(
    'id' => 'img-' . $postid,
);

the_post_thumbnail($attr);
}
?>
__________________
...___...