Warning: Invalid argument supplied for foreach() in /Applications/MAMP/htdocs/europeiska/wp-content/themes/europeiska/get-theme-options.php on line 4
這是Wordpress檢索此信息的正確代碼,爲什麼PHP將此信息吐出?php繼續給出以下內容
<?php
//allows the theme to get info from the theme options page
global $options;
foreach ($options as $value) {
if (get_option($value['id']) === FALSE) { $$value['id'] = $value['std']; }
else {
$$value['id'] = get_option($value['id']);
}
}
?>