Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // Create an option to the database
  2. add_option( $option, $value = , $deprecated = , $autoload = 'yes' );
  3. // Removes option by name.
  4. delete_option( $option );
  5. // Fetch a saved option
  6. get_option( $option, $default = false );
  7. // Update the value of an option that was already added.
  8. update_option( $option, $newvalue );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement