Ver Mensaje Individual
  #8 (permalink)  
Antiguo 14/02/2012, 10:06
Avatar de hasdpk
hasdpk
 
Fecha de Ingreso: agosto-2011
Ubicación: $spain->city( 'Arucas' );
Mensajes: 1.800
Antigüedad: 12 años, 7 meses
Puntos: 297
Respuesta: Como pongo que el plugin Pagenavi y una foto solo aparesca si existen mas

Puedes probar algo así:

Código PHP:
Ver original
  1. <?php if(function_exists('wp_pagenavi')) : ?>
  2.  
  3.     <?php if (wp_pagenavi()) : ?>
  4.  
  5.         <img src="images/masdiscos.png" alt="Más Discos!" width="221" height="43" />
  6.         <?php wp_pagenavi(); ?>
  7.  
  8.     <?php endif; ?>
  9.  
  10. <?php endif; ?>