Wordpress简单字段插件-显示可重复区域
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress简单字段插件-显示可重复区域相关的知识,希望对你有一定的参考价值。
Dispaly a repeatable region using the Simple Fields wordpress plugin.
<?php $childPagesRepeatedGroup = simple_fields_get_post_group_values(get_the_id(),"Child Pages", true, 2); foreach ( $childPagesRepeatedGroup as $childPage ) { $imageSource = wp_get_attachment_image_src($childPage['Pic']); ?> <div class="child-links"> <img src="<?php print $imageSource[0]; ?>" width="<?php print $imageSource[1]; ?>" height="<?php print $imageSource[2]; ?>" /> <h2><?php print $childPage['Heading']; ?></h2> <p><?php print $childPage['Text']; ?></p> </div> <?php } ?>
以上是关于Wordpress简单字段插件-显示可重复区域的主要内容,如果未能解决你的问题,请参考以下文章