dtcu5885 2018-01-31 20:09
浏览 56
已采纳

ACF没有找到使用wordpress高级自定义字段插件的行

hello experts i have been trying to retrieve data from fields that i created enter image description here

the field name is "ddw" and its repeater and enter image description here

its subfield op1 and it has lots of rows enter image description here

but i am still not able retreive any row by using this code

<?php 
require_once 'wp-load.php';
require_once ABSPATH . '/wp-admin/includes/taxonomy.php';
include_once 'wp-content/plugins/acf351/acf.php';
// check if the repeater field has rows of data
if( have_rows(get_field('ddw')) ):
    // loop through the rows of data
    while ( have_rows(get_field('ddw')) ) : the_row();

        // display a sub field value
       echo the_sub_field('op1');

    endwhile;
else :
    echo 'no rows found';
endif;
?>

and it finds no row . i want all rows from every posts and particularly i want http links to put on array and loop through it . i have put this script in wp directory its not theme or template folder. please help me where i am doing wrong .thanks in advance

  • 写回答

1条回答 默认 最新

  • dongyi7966 2018-02-01 08:00
    关注

    For your code to work, it should look like this. (replace $post_id with your post id variable)

    <?php
    require_once 'wp-load.php';
    require_once ABSPATH . '/wp-admin/includes/taxonomy.php';
    include_once 'wp-content/plugins/acf351/acf.php';
    // check if the repeater field has rows of data
    if( have_rows('ddw' , $post_id) ):
        // loop through the rows of data
        while ( have_rows('ddw', $post_id) ) : the_row();
    
            // display a sub field value
           echo get_sub_field('op1');
    
        endwhile;
    else :
        echo 'no rows found';
    endif;
    ?>
    

    You can find code samples here for all scenarios like without loop or for all posts with post ID. Try https://www.advancedcustomfields.com/resources/code-examples/

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘