在wordpress中动态创建一个新的div

时间:2010-12-12 02:44:20

标签: wordpress html new-operator

我在wordpress 3中使用以下代码来获取和限制发布到父级的子页面数量。帖子片段进入div。当他们达到7时我想创建一个新的div并将其限制为7,依此类推。一旦帖子命中7,创建一个新的div并获得下一个7。

请参阅下面的代码。

    <div id="folio-content">
<?php
$projectpage = get_pages('child_of='.$post->ID.'&sort_column=post_date&sort_order=desc&number=7');

$count = 0;
foreach($projectpage as $page)
{
$content = $page->post_content;
if(!$content)
continue;
if($count >= 2)
break;
$count++;
$content = apply_filters('the_content', $content);
?>
<div class="thumb-container">
<div class="thumb">ID) ?>"><?php echo get_image ("thumbnail",1,1,1,$page->ID);?>
</div> ID) ?>"><?php echo $page->post_title ?>
</div>
<?php
}
?>

</div>

1 个答案:

答案 0 :(得分:0)

未经测试,但可能是这样的

<div id="folio-content">
<div class="7-set">
<?php
$projectpage = get_pages('child_of='.$post->ID.'&sort_column=post_date&sort_order=desc&number=7');

$count = 0;
foreach($projectpage as $page)
{
if(!($count % 7)):?>
</div><!--/close set!-->
<div class="7-set">
<?php
endif;
$content = $page->post_content;
if(!$content)
continue;
if($count >= 2)
break;
$count++;

$content = apply_filters('the_content', $content);
?>
<div class="thumb-container">
<div class="thumb">ID) ?>"><?php echo get_image ("thumbnail",1,1,1,$page->ID);?>
</div> ID) ?>"><?php echo $page->post_title ?>
</div>
<?php
}
?>
</div><!--/close set!-->
</div><!--/close folio content!-->