Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
php-code-for-posts-master
/
Codemirror
:
install.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if (!defined('ABSPATH')) { exit(); } load_easy_timer_textdomain(); include easy_timer_path('initial-options.php'); $options = (array) get_option('easy_timer'); $current_options = $options; if ((isset($options[0])) && ($options[0] === false)) { unset($options[0]); } foreach ($initial_options as $key => $value) { if (($key == 'version') || (!isset($options[$key])) || ($options[$key] == '')) { $options[$key] = $value; } } if ($options != $current_options) { update_option('easy_timer', $options); }