关于错误的建议:数组到字符串转换。 WordPress的

时间:2015-02-18 15:20:06

标签: arrays wordpress while-loop options advanced-custom-fields

我已经找到了解决此错误的方法。我想要一些建议,因为我认为这是一些我不知道的小事。

我尝试使用灵活内容从使用ACF专业版设置的选项页面获取网址字段和图片字段。我获取数据,但不是字符串变量。

这是错误的屏幕截图。 新链接http://redrocketwebsitedesign.co.uk/Array_error2.png

生成此代码的代码。

    <ul class="list-inline"><li>
    <p>Follow us on</p>
  </li>
  <?php //Options: Social icons

// check if the flexible content field has rows of data
if( have_rows('social_icon', 'option') ):

     // loop through the rows of data
    while ( have_rows('social_icon', 'option') ) : the_row();

        if( get_row_layout() == 'social_icon' ):


$image = get_sub_field_object('social_image', 'option');

if( $image ){
?>


<li>
<a href="<?php echo the_sub_field('social_link', 'option'); ?>" target="_blank">
<img class="img img-responsive" src="<?php echo $image[7]; ?>" alt="<?php echo $image[alt]; ?>"/>
</a> 
<?php var_dump('Vardump <br />') ?>
<?php var_dump($url) ?>
<?php var_dump('<br /> Image array <br />') ?>
<?php var_dump($image) ?>
<?php var_dump('<br /> Image link <br />') ?>
<?php var_dump($image['7']) ?>
</li>

<?php 
}

endif;

    endwhile;
    else :

    // no layouts found

endif;

  ?>


</ul>

非常感谢任何帮助: - ]

$ social_image是$ field_name,存储为图像数组。当我print_r $ image时,这就是结果。我想我已经接近能够从数组中选择正确的字符串。

    Image array

`" array(22) { ["ID"]=> int(138) ["key"]=> string(19) "field_54e47a9b7f735" ["label"]=> string(12) "Social Image" ["name"]=> string(12) "social_image" ["prefix"]=> string(0) "" ["type"]=> string(5) "image" ["value"]=> array(18) { ["ID"]=> int(105) ["id"]=> int(105) ["title"]=> string(11) "Tripadvisor" ["filename"]=> string(24) "footertripadvisorNEW.png" ["url"]=> string(83) "http-link" ["alt"]=> string(11) "Tripadvisor" ["author"]=> string(1) "1" ["description"]=> string(0) "" ["caption"]=> string(0) "" ["name"]=> string(20) "footertripadvisornew" ["date"]=> string(19) "2015-02-10 16:13:27" ["modified"]=> string(19) "2015-02-18 11:52:15" ["mime_type"]=> string(9) "image/png" ["type"]=> string(5) "image" ["icon"]=> string(68) "http://localhost:8888/wordpress/wp-includes/images/media/default.png" ["width"]=> int(50) ["height"]=> int(50) ["sizes"]=>`

...等。

2 个答案:

答案 0 :(得分:0)

您的问题是您在线上使用的2个变量之一

$value = get_sub_field( $field_name, $format_value );

是函数期待字符串时的数组。

在此之前,您可以添加此代码并复制并粘贴输出...

print_r( $field_name ); echo '<br>'; print_r( $format_value );

这样我们就会知道这些变量中存储了什么。

答案 1 :(得分:0)

get_sub_field()采用string类型的单个参数。你现在传递的太多了。你应该使用:

$value = get_sub_field( $field_name );

另外,如上所述,您需要确保$field_name实际上是一个字符串,而不是一个数组。