admin/admin-functions.php Please help!
-
Parse error: syntax error, unexpected ‘<‘ in /home/cdnspuqs/public_html/wp-content/themes/gameday/admin/admin-functions.php on line 7
<?php /*-----------------------------------------------------------------------------------*/ /* Add default options after activation */ /*-----------------------------------------------------------------------------------*/ if (is_admin() && isset($_GET['activated'] ) && $pagenow == "themes.php?page=siteoptions" ) { //Call action that sets add_action('admin_head','tt_option_setup'); } function tt_option_setup(){ //Update EMPTY options $tt_array = array(); add_option('tt_options',$tt_array); $template = get_option('tt_template'); $saved_options = get_option('tt_options'); foreach($template as $option) { if($option['type'] != 'heading'){ $id = $option['id']; $std = $option['std']; $db_option = get_option($id); if(empty($db_option)){ if(is_array($option['type'])) { foreach($option['type'] as $child){ $c_id = $child['id']; $c_std = $child['std']; update_option($c_id,$c_std); $tt_array[$c_id] = $c_std; } } else { update_option($id,$std); $tt_array[$id] = $std; } } else { //So just store the old values over again. $tt_array[$id] = $db_option; } } } update_option('tt_options',$tt_array); } /*-----------------------------------------------------------------------------------*/ /* Admin Backend */ /*-----------------------------------------------------------------------------------*/ function siteoptions_admin_head() { ?> <script type="text/javascript"> jQuery(function(){ var message = '<p><strong>Activation Successful!</strong> This theme\'s settings are located under <a href="<?php echo admin_url('admin.php?page=siteoptions'); ?>">Appearance > Site Options</a>.</p>'; jQuery('.themes-php #message2').html(message); }); </script> <?php } add_action('admin_head', 'siteoptions_admin_head'); ?> <?php /*-----------------------------------------------------------------------------------*/ /* Add default options after activation */ /*-----------------------------------------------------------------------------------*/ } if (is_admin() && isset($_GET['activated'] ) && $pagenow == "themes.php?page=siteoptions" ) { //Call action that sets add_action('admin_head','tt_option_setup'); } function tt_option_setup(){ //Update EMPTY options $tt_array = array(); add_option('tt_options',$tt_array); $template = get_option('tt_template'); $saved_options = get_option('tt_options'); foreach($template as $option) { if($option['type'] != 'heading'){ $id = $option['id']; $std = $option['std']; $db_option = get_option($id); if(empty($db_option)){ if(is_array($option['type'])) { foreach($option['type'] as $child){ $c_id = $child['id']; $c_std = $child['std']; update_option($c_id,$c_std); $tt_array[$c_id] = $c_std; } } else { update_option($id,$std); $tt_array[$id] = $std; } } else { //So just store the old values over again. $tt_array[$id] = $db_option; } } } update_option('tt_options',$tt_array); } /*-----------------------------------------------------------------------------------*/ /* Admin Backend */ /*-----------------------------------------------------------------------------------*/ function siteoptions_admin_head() { ?> <script type="text/javascript"> jQuery(function(){ var message = '<p><strong>Activation Successful!</strong> This theme\'s settings are located under <a href="<?php echo admin_url('admin.php?page=siteoptions'); ?>">Appearance > Site Options</a>.</p>'; jQuery('.themes-php #message2').html(message); }); </script> <?php } add_action('admin_head', 'siteoptions_admin_head'); ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘admin/admin-functions.php Please help!’ is closed to new replies.