PHP警告 - 内部错误

时间:2014-07-21 23:09:09

标签: php wordpress internal-server-error

我正在为WordPress的网站工作,每当我购买的主题被激活时,当我想添加或编辑帖子时,我一直收到内部服务器错误。在activatinh我的错误日志。我收到了这个通知。


PHP Warning:  Illegal string offset 'gallery_src' in G:\PleskVhosts\latinaandthecity.tv\httpdocs\wp-content\themes\breeze\inc\meta-box.php on line 150

PHP Warning:  Illegal string offset 'gallery_id' in *file* on line 151

PHP Warning:  Illegal string offset 'gallery_src' in *file* on line 152

查看文件时,这就是这些行的脚本。

    <input type="hidden" name="bluth_custom_thumbnail[gallery_src]" class="source" value="<?php echo $custom_thumbnail['gallery_src']; ?>" />
    <input type="hidden" name="bluth_custom_thumbnail[gallery_id]" class="image_id" value="<?php echo $custom_thumbnail['gallery_id']; ?>" />
    <a class="blu_add_image" href="#" style="height:auto; min-height: 100px;"> <img class="blu_gallery" data-placeholder="<?php echo $fallback_image; ?>" src="<?php echo $custom_thumbnail['gallery_src']; ?>"> </a>

我不确定这里有什么问题。请指教?

1 个答案:

答案 0 :(得分:0)

$custom_thumbnail变量设置为字符串而不是关联数组。字符串只允许数字偏移。