带引导程序的搜索结果页面中的Wordpress自定义布局

时间:2015-05-14 09:26:53

标签: php css wordpress twitter-bootstrap genesis

如果可能的话,我想在以下问题中提供一些帮助:

我在Genesis主题中使用了一个自举网格,并希望使用这个网格显示搜索结果。

我使用以下代码创建了一个search.php:

<?php
/**
 * Search Results Template File
 */ 
get_header(); ?>
    <header>
        <h1>Search Results: &quot;<?php echo get_search_query(); ?>&quot;</h1>
        <br>
    </header>

<?php if ( have_posts() ) :  // results found?>
    <?php while ( have_posts() ) : the_post(); ?>

<div class="container-fluid">

<div class="row">

<div class="col-md-3 col-sm-6 col-xs-12">
<div class="gr-infos-container-cliente">
<div class="gr-promo-do-cliente"><?php the_field('tipo_de_promo');?></div>
<div class="gr-img-cliente"><a href="<?php the_permalink();?>" title="<?php the_title();?>"><img src="<?php echo get_field('foto_cliente_miniatura');?>" alt="" class="img-responsive center-block"></a></div>
<div class="gr-nome-cliente"><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title();?></a></div>
<div class="gr-tagline-cliente"><?php the_field('tagline_do_anunciante');?></div>
<div class="gr-bairro-do-cliente"><i class="cliente fa fa-map-marker"></i><?php the_field('bairro_do_cliente');?></div>
</div>
</div>

</div> <!-- Row -->

</div> <!-- Container -->

<?php endwhile; ?>

<?php else :  // no results?>
    <article>
        <h1>No Results Found.</h1>
    </article>
<?php endif; ?>
<?php get_footer(); ?>

genesis();

但是在搜索结果中,内容是一个在另一个上面而不是在选定的网格中对齐。

你可以给我什么提示?

我非常感谢任何帮助!

1 个答案:

答案 0 :(得分:1)

这是因为你的'row'div在while循环中,导致它生成多个'row'div而不是一个。

要解决此问题,您需要将while循环放在'row'div内。

尝试下面的代码

<?php
/**
 * Search Results Template File
 */ 
get_header(); ?>
<header>
    <h1>Search Results: &quot;<?php echo get_search_query(); ?>&quot;</h1>
    <br>
</header>

<?php if ( have_posts() ) :  // results found?>
<div class="container-fluid">
    <div class="row">
    <?php while ( have_posts() ) : the_post(); ?>
        <div class="col-md-3 col-sm-6 col-xs-12">
            <div class="gr-infos-container-cliente">
                <div class="gr-promo-do-cliente"><?php the_field('tipo_de_promo');?></div>
                <div class="gr-img-cliente"><a href="<?php the_permalink();?>" title="<?php the_title();?>"><img src="<?php echo get_field('foto_cliente_miniatura');?>" alt="" class="img-responsive center-block"></a></div>
                <div class="gr-nome-cliente"><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title();?></a></div>
                <div class="gr-tagline-cliente"><?php the_field('tagline_do_anunciante');?></div>
                <div class="gr-bairro-do-cliente"><i class="cliente fa fa-map-marker"></i><?php the_field('bairro_do_cliente');?></div>
            </div>
        </div>
    <?php endwhile; ?>
    </div> <!-- Row -->
</div> <!-- Container -->

<?php else :  // no results?>
<article>
    <h1>No Results Found.</h1>
</article>
<?php endif; ?>
<?php get_footer(); ?>

genesis();