私は現在WordPressのプラグインに取り組んでおり、を使用してウィジェットオプションを取得しようとしていますget_options
。その結果、オプションとオプション名をキーとして持つ配列を取得しましたが、何らかの理由でそれを読み取ることができません。
$options = get_option('widget_widgetname');
var_dump($options);
これは次の出力ですvar_dump()
:
array(2) { [2]=> array(5)
{
["string"]=> string(6) "Search"
["title"]=> string(12) "WDSearchForm"
["show_wrapper"]=> string(0) ""
["animate"]=> string(0) ""
["animateWidth"]=> string(2) "80"
}
["_multiwidget"]=> int(1) }
しかし、私が次のことをすると、それは機能しません:
echo $options["string"]; // No output
echo $options["title"]; // No output