Skip to content

Instantly share code, notes, and snippets.

@foozlereducer
Created July 18, 2016 13:43
Show Gist options
  • Select an option

  • Save foozlereducer/fc149186a2db6a6636c6d588f0c4893e to your computer and use it in GitHub Desktop.

Select an option

Save foozlereducer/fc149186a2db6a6636c6d588f0c4893e to your computer and use it in GitHub Desktop.
if ( function_exist( 'wpl_update_option' ) ) {
return wlo_update_option( $this->unique_storage_key, wp_json_encode( $this->process_data( $data ) ) );
} else if ( function_exist( update_option ) {
return update_option( $this->unique_storage_key, wp_json_encode( $this->process_data( $data ) ) );
}
return false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment