php aşağıdaki vererek tutar

0 Cevap php
Warning: Invalid argument supplied for foreach() in /Applications/MAMP/htdocs/europeiska/wp-content/themes/europeiska/get-theme-options.php on line 4

Bu, bilgi almak için Wordpress için doğru kod, neden PHP tükürme bu çıktı?

<?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'] ); 
    }    
}

>

0 Cevap