我正在尝试用bootstrap 3制作Wordpress主题。x、 这是我的第一个主题,我正在试验Wordpress和bootstrap的各种功能。我想使用Wordpress粘滞贴子功能创建三个并排的列,但我不知道如何做到这一点。如果我使用
?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; ?>
所有的帖子,包括那些被选中为粘性帖子的帖子,都会出现在我正在讨论的三列下面。
我的计划是通过以下方式添加代码:
<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>
任何想法都将不胜感激。当做