Files
sportspress/defaults.php
Takumi e3fb4c69dd Begin SportsPress
Add basic helpers, post types and taxonomies.
2013-07-24 13:44:11 +10:00

14 lines
271 B
PHP

<?php
$sp_options = array(
'settings' => array(
'sp_event_team_count' => 2,
),
);
foreach( $sp_options as $optiongroupkey => $optiongroup ) {
foreach( $optiongroup as $key => $value ) {
if ( get_option( $key ) === false )
update_option( $key, $value );
}
}
?>