Guest User

Untitled

a guest
Jan 16th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $option_name = 'uabb_lite_redirect'' ;
  2. $new_value = 'false' ;
  3.  
  4. if ( get_option( $option_name ) !== false ) {
  5.  
  6. // The option already exists, so we just update it.
  7. update_option( $option_name, $new_value );
  8.  
  9. } else {
  10.  
  11. // The option hasn't been added yet. We'll add it with $autoload set to 'no'.
  12. $deprecated = null;
  13. $autoload = 'no';
  14. add_option( $option_name, $new_value, $deprecated, $autoload );
  15. }
Add Comment
Please, Sign In to add comment