Guest User

Untitled

a guest
Jan 18th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. function themeoptions_update()
  2. {
  3. // this is where validation would go
  4. update_option('mytheme_colour', $_POST['colour']);
  5.  
  6. update_option('mytheme_ad1image', $_POST['ad1image']);
  7. update_option('mytheme_ad1url', $_POST['ad1url']);
  8.  
  9. update_option('mytheme_ad2image', $_POST['ad2image']);
  10. update_option('mytheme_ad2url', $_POST['ad2url']);
  11.  
  12. if ($_POST['display_sidebar']=='on') { $display = 'checked'; } else { $display = ''; }
  13. update_option('mytheme_display_sidebar', $display);
  14.  
  15. if ($_POST['display_search']=='on') { $display = 'checked'; } else { $display = ''; }
  16. update_option('mytheme_display_search', $display);
  17.  
  18. if ($_POST['display_twitter']=='on') { $display = 'checked'; } else { $display = ''; }
  19. update_option('mytheme_display_twitter', $display);
  20.  
  21. update_option('mytheme_twitter_username', $_POST['twitter_username']);
  22. }
Add Comment
Please, Sign In to add comment