最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Code for creating three vertical columns in Wordpress Bootstrap theme

programmeradmin3浏览0评论

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);
              }
    } ?>
发布评论

评论列表(0)

  1. 暂无评论