警告:非法字符串偏移'图像'

时间:2013-05-06 05:39:35

标签: php javascript wordpress plugins

我正在使用Skitter Slideshow plugin进行wordpress,在此媒体库选项卡的此插件的管理面板中,它显示以下警告:

Warning: Illegal string offset 'image' in C:\wamp\www\wp-content\plugins\wp-skitter-slideshow\wp-skitter-slideshow.php on line 762 and 826 

尝试在此插件的管理面板中加载新图片时出现此问题...

第762行代码

foreach($attachments as $i => $attachment) {

    $id = $attachment->ID;

    $style = (is_array($options_attachments['image']) && in_array($id, $options_attachments['image'])) ? ' style="opacity:0.3;"' : '';

第826行代码

foreach($attachments as $i => $attachment) 
{

    $id = $attachment->ID;

    if (is_array($options_attachments['image']) && in_array($id, $options_attachments['image'])) continue;

任何建议都将受到赞赏

0 个答案:

没有答案