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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?