Code for creating three vertical columns in Wordpress Bootstrap theme

I am trying to make Wordpress theme with bootstrap 3.x. This is my first theme and I am experimenting with Wordpress and

I am trying to make Wordpress theme with bootstrap 3.x. This is my first theme and I am experimenting with Wordpress and bootstrap various features. I would like to use Wordpress sticky post feature to create three side by side columns, but I do not know how to do that. If I use

?php if (have_posts()) : while (have_posts()) : the_post();
$mythemename_post_format = get_post_format();
get_template_part('templates/post', $mythemename_post_format);
<?php endif; ?>

all the posts including those which are checked as sticky posts will appear under the three columns I am taking about.

My plan is to add the codes in the following way:

<div class="row">
        <div class="container">
            <div class="col-sm-4">
                <!—code for the first column—>
            </div>
            <div class="col-sm-4">
                <!—code for the second column—>
            </div>
            <div class="col-sm-4">
                <!—code for the third column—>
            </div>
        </div>
    </div>

Any ideas would be appreciated. Regards

I am trying to make Wordpress theme with bootstrap 3.x. This is my first theme and I am experimenting with Wordpress and bootstrap various features. I would like to use Wordpress sticky post feature to create three side by side columns, but I do not know how to do that. If I use

?php if (have_posts()) : while (have_posts()) : the_post();
$mythemename_post_format = get_post_format();
get_template_part('templates/post', $mythemename_post_format);
<?php endif; ?>

all the posts including those which are checked as sticky posts will appear under the three columns I am taking about.

My plan is to add the codes in the following way:

<div class="row">
        <div class="container">
            <div class="col-sm-4">
                <!—code for the first column—>
            </div>
            <div class="col-sm-4">
                <!—code for the second column—>
            </div>
            <div class="col-sm-4">
                <!—code for the third column—>
            </div>
        </div>
    </div>

Any ideas would be appreciated. Regards

Share Improve this question asked Oct 20, 2015 at 20:18 MikeMike 12 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0
<?php if (have_posts()){ ?>
    <?php while(have_posts()){ 
        the_post();
        if(is_sticky()){ ?>
            <div class="col-sm-4">
                <?php //put what you want, Hey you inside the loop now ?>
            </div>
        <?php }else{
                  $mythemename_post_format = get_post_format();
                  get_template_part('templates/post', $mythemename_post_format);
              }
    } ?>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744667588a4586845.html

相关推荐

  • Code for creating three vertical columns in Wordpress Bootstrap theme

    I am trying to make Wordpress theme with bootstrap 3.x. This is my first theme and I am experimenting with Wordpress and

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信