我希望每四个Cfcolumns包裹在一个具有一个类的Div容器中
这是我在索引页面中的While循环:
<
div id="left-area" style="padding-top: 58px;
">
<
!-- #custom-area -->
<
?php while ( have_posts() ) : the_post();
?>
<
div class="cfcolumn">
<
a href="http://www.srcmini.com/<
?php echo get_field('upload_pdf_book');
?>
">
<
img src="http://www.srcmini.com/<
?php echo get_field('cover_picture');
?>
" alt="<
?php
the_title();
?>
" >
<
/a>
<
/div>
<
?php endwhile;
// end of the loop. ?>
<
!-- #custom-area -->
<
/div>
<
!-- #left-area -->
#1【我希望将WP While循环中的每个四个元素包装在Div容器(Index.php)中】我想如果你不想学习模数-你可以重置计数器。
<
div id="left-area" style="padding-top: 58px;
">
<
!-- #custom-area -->
<
?php
//Initiate the counter
$counter = 0;
?>
<
?php while ( have_posts() ) : the_post();
?>
<
?php
//add 1 to the counter
$counter++;
//If the counter = 4, then spit out the HMTL
if($counter == 4): ?>
<
div class="whateverClassWrapper">
<
?php endif;
?>
<
div class="cfcolumn">
<
a href="http://www.srcmini.com/<
?php echo get_field('upload_pdf_book');
?>
">
<
img src="http://www.srcmini.com/<
?php echo get_field('cover_picture');
?>
" alt="<
?php
the_title();
?>
" >
<
/a>
<
/div>
<
?php
//close the HTML tag initiated by your counter
if($counter == 4): ?>
<
/div>
<
?php
//Reset the counter
$counter = 0;
endif;
?>
<
?php endwhile;
// end of the loop. ?>
<
!-- #custom-area -->
<
/div>
<
!-- #left-area -->
这应该工作-但尚未测试。
#2你可以设置一个计数器来对当前循环进行计数, 然后检查其是否被4整除以在内容之前和之后插入和关闭容器。
<
div id="left-area" style="padding-top: 58px;
">
<
?php $i = 1;
?>
<
?php while ( have_posts() ) : the_post();
?>
<
?php if( $i % 4 == 0 ): ?>
<
div class="container">
<
?php endif;
?>
<
div class="cfcolumn">
<
a href="http://www.srcmini.com/<
?php echo get_field('upload_pdf_book');
?>
">
<
img src="http://www.srcmini.com/<
?php echo get_field('cover_picture');
?>
" alt="<
?php
the_title();
?>
" >
<
/a>
<
/div>
<
?php if( $i % 4 == 0 ): ?>
<
/div>
<
!-- close the container -->
<
?php endif;
?>
<
?php $i++;
?>
<
?php endwhile;
?>
<
/div>
#3你还可以使用$ WP_Query的current_post属性, 如下所示:
<
?php
$args = array(
'post_type' =>
'page', 'posts_per_page' =>
5
);
$loop = new WP_Query($args);
while ($loop->
have_posts()) :
$loop->
the_post();
if ($loop->
current_post % 4 == 0) {
echo '<
div class="container">
';
echo '<
div class="cfcolumn">
';
//more code here
echo '<
/div>
';
echo '<
/div>
';
}
else {
echo '<
div class="cfcolumn">
';
//more code here
echo '<
/div>
';
}
echo '<
/div>
';
endwhile;
wp_reset_postdata();
?>
`
推荐阅读
- 我想在一个按钮上点击WordPress来创建新页面
- 带有子主题的WordPress主题自定义是否会对以后的更新造成任何风险
- 当is_front_page为false时,is_user_logged_in返回false
- is_user_logged_in与wp_redirect冲突
- 个人网站上是否有一个用于”新闻和活动”的wordpress插件。阅读详情
- 有没有一种方法可以使用wp_enqueue_script直接添加JavaScript()
- BASH 的配置文件
- CentOS下KVM虚拟机USB和GPU直通配置
- centos7.8---yum安装mysql5.7.36