带有高级自定义字段的Wordpress中的非法字符串偏移错误

时间:2016-01-21 23:01:08

标签: php wordpress wordpress-plugin

我正在使用Wordpress的高级自定义字段插件尝试使用其说明中提供的代码回显出一个简单的图像。

这个代码给我带来了2个错误,

  • 非法字符串偏移'url'。
  • 非法字符串偏移'alt'。

有没有人遇到过这个?

    <?php $image = get_field('top-section-img'); ?>
    <?php if(!empty($image)) : ?>
        <img class="service-top-right-image animation-duration" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
    <?php endif; ?> 

1 个答案:

答案 0 :(得分:0)

在第2行中,您必须将</php更改为<?php