【发布时间】:2014-03-03 14:13:05
【问题描述】:
我有the blank-theme wordpress theme,并想在搜索结果中也显示为缩略图。有可能吗?
搜索.php
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<h2>Resultados de Búsqueda:</h2>
<?php include (TEMPLATEPATH . '/inc/nav.php' ); ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href='<?php echo get_permalink($post->ID)?>'><?php the_title(); ?></a></h2>
<?php include (TEMPLATEPATH . '/inc/meta.php' ); ?>
<div class="entry">
<?php the_excerpt(); ?>
</div>
</div>
<?php endwhile; ?>
<?php include (TEMPLATEPATH . '/inc/nav.php' ); ?>
<?php else : ?>
<h2>Ningún tema encontrado...</h2>
<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
【问题讨论】:
-
在这个空白主题中发布
search.php模板文件的内容(如果存在)? -
我发布了文件search.php 谢谢