Created
July 18, 2016 13:43
-
-
Save foozlereducer/fc149186a2db6a6636c6d588f0c4893e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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