Wordpress简单字段插件-显示可重复区域

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress简单字段插件-显示可重复区域相关的知识,希望对你有一定的参考价值。

Dispaly a repeatable region using the Simple Fields wordpress plugin.
  1. <?php
  2.  
  3. $childPagesRepeatedGroup = simple_fields_get_post_group_values(get_the_id(),"Child Pages", true, 2);
  4.  
  5. if ( isset($childPagesRepeatedGroup) && count($childPagesRepeatedGroup) > 0 ) {
  6.  
  7. foreach ( $childPagesRepeatedGroup as $childPage ) {
  8.  
  9. $imageSource = wp_get_attachment_image_src($childPage['Pic']);
  10. ?>
  11.  
  12. <div class="child-links">
  13. <img src="<?php print $imageSource[0]; ?>" width="<?php print $imageSource[1]; ?>" height="<?php print $imageSource[2]; ?>" />
  14. <h2><?php print $childPage['Heading']; ?></h2>
  15. <p><?php print $childPage['Text']; ?></p>
  16. </div>
  17.  
  18. <?php
  19.  
  20. }
  21. ?>

以上是关于Wordpress简单字段插件-显示可重复区域的主要内容,如果未能解决你的问题,请参考以下文章

我的 WordPress 插件在用户部分无法正常工作

在 WordPress 插件中调用 TinyMCE

WordPress小部件中的重复表单字段?

Wordpress 高级自定义字段插件未正确输出

用户权限 - 用户角色触发代码 (Wordpress)

php 这将显示您为包含选择字段的设置设置WordPress插件的页面