Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/02/2016, 10:54
KaiserOficial
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Como arreglar codigo para buscador alfabetico

Código PHP:
Ver original
  1. <?php get_header(); ?>
  2. <div id="wrapper" class="hfeed">
  3.     <div id="main">
  4.         <div id="container">
  5.             <div id="content" role="main">
  6.                 <h1> <strong>Resultados para "<?php the_search_query(); ?>"</strong><div align="right" style="margin-top:-25px;"><a href="<?php echo get_settings('home'); ?>/archivos/estrenos/"><img src="<?php bloginfo( 'template_url' ); ?>/css/images/estrenos.png" title="Ver Estrenos" /></a>&nbsp;</div></h1>
  7.                 <?php if (have_posts()) : ?>
  8.                 <?php while (have_posts()) : the_post(); ?>
  9.                 <div class="poster post-<?php the_ID(); ?>">
  10.                     <a class="aimg" href="<?php the_permalink() ?>" rel="tooltip" title='<h2><?php the_title(); ?></h2><p><?php wp_limit_post(170,'[...]',true); ?></p><h2></h2><p></p><p><strong>Reparto: </strong><?php echo get_the_term_list($post->ID, 'actor', '', ', ', ''); ?></p><p><strong>Género: </strong><?php the_category(', '); ?></p><p><strong>Duración: </strong><?php $values = get_post_custom_values("Runtime"); echo $values[0]; ?></p>'>
  11.                     <?php the_post_thumbnail(array(128,171)); ?></a>
  12.                     <div class="mdata">
  13.                         <a href="<?php the_permalink() ?>"><strong><?php the_title(); ?></strong></a><br />
  14.                         <?php if(function_exists('the_ratings')) { the_ratings(); } ?>
  15.                     </div>
  16.                 </div>
  17.                 <?php endwhile; ?> 
  18.                                 <hr width=100%>
  19.                 <?php wp_pagenavi(); ?>
  20.                 <?php else : ?>
  21.  
  22.                 <p>Sin resultados</p>
  23.        
  24.                 <?php endif; ?>
  25.             </div>
  26.         </div>
  27.         <?php get_sidebar(); ?>
  28.     </div>
  29. </div>
  30. <?php get_footer(); ?>