02/08/2010, 19:35
|
| | Fecha de Ingreso: julio-2008
Mensajes: 58
Antigüedad: 16 años, 4 meses Puntos: 0 | |
Respuesta: Ayuda con Wordpress Contenido search.php
<?php get_header(); ?>
<div id="navegacion">
<ul class="navegacion" >
<li> <?php if(is_home()) { ?> <?php } ?>
<a href="<?php bloginfo('home'); ?>">Inicio</a></li>
<?php wp_list_pages('sort_column=menu_order&depth=1&titl e_li='); ?>
</ul>
</div>
<br />
<div id="content">
<div id="main">
<h2 id="sectiontitle">Buscar: <?php the_search_query(); ?></h2>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="entry">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<!--<?php the_content('Read more »'); ?>-->
</div>
<div class="postmetadata">
<?php if (get_the_tags()){?>
<p>Etiquetas: <?php the_tags('') ?></p>
<?php } ?>
<p><img style="vertical-align:-5px;" alt="categories" src="<?php bloginfo('template_directory'); ?>/images/category.gif" height="16" width="16" /> <?php the_category(', ') ?> | <?php the_author_posts_link(); ?> <?php the_date(); ?> | <img style="vertical-align:-5px;" alt="comments" src="<?php bloginfo('template_directory'); ?>/images/comment.gif" height="15" width="20" />
<?php comments_popup_link(__('Comentarios (0)'), __('Comentarios (1)'), __('Comentarios (%)')); ?> <?php edit_post_link('Editar',' ',''); ?></p>
</div>
<?php comments_template(); ?>
</div>
<?php endwhile; ?>
<div id="navigation">
<div class="fleft"><?php next_posts_link('« Antiguo') ?></div>
<div class="fright"> <?php previous_posts_link('Nuevo »') ?></div>
</div>
<?php else : ?>
<div class="post">
<div class="entry">
<h2>Sin resultados</h2>
<p>Lo sentimos, la búsqueda no ha tenido éxito.</p>
</div>
</div>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Última edición por bbv81; 02/08/2010 a las 19:36
Razón: correcion
|