「警告:32行目の/home/mysite/public_html/wp-content/themes/evento/lib/php/extra.class.phpの文字列オフセット'タイプ'が無効です」というエラーが表示されます。
ファイル内のコードのこのセクションが間違っていることに気づきましたが、PHPはまだそれほど優れていません。エラーをなくすために、誰かがこのセクションを書き直すのを手伝ってくれるかどうか疑問に思っています。ありがとう!(エラーは、以下のifステートメントの先頭である32行目から始まります)
コードは次のとおりです。
/* new version */
function get_attachment_struct( $inputs ){
$attach = array();
if( $inputs['type'] == 'attach' ){
$name = $inputs['name'];
$attach = array(
0 => array(
'name' => $name,
'type' => 'text',
'label' => 'Attachment URL',
'lvisible' => false,
'upload' => true,
),
1 => array(
'name' => $name .'_id',
'type' => 'hidden',
'upload' => true
),
);
if( isset( $inputs[ 'classes' ] ) ){
$attach[0]['classes'] = $inputs[ 'classes' ];
$attach[1]['classes'] = $inputs[ 'classes' ] . '_id';
}
}
return $attach;
}
/* new version */