Return to Snippet

Revision: 32803
at October 2, 2010 06:40 by vagrantradio


Initial Code
<?php
  global $options;
  foreach ($options as $value) {
   if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
  }
?>

Initial URL

                                

Initial Description

                                

Initial Title
WordPress options as value

Initial Tags

                                

Initial Language
PHP