Exemple #1
0
function wpi_get_theme_option($name)
{
    $options = get_option(WPI_META_PREFIX . 'settings');
    if (isset($options[$name])) {
        return $options[$name];
    } else {
        wpi_update_theme_options($name);
        return wpi_get_theme_option($name);
    }
}
Exemple #2
0
 public static function save($name, $value)
 {
     return wpi_update_theme_options($name, $value);
 }