Changeset 3406609
- Timestamp:
- 12/01/2025 09:39:17 AM (3 months ago)
- Location:
- ai-snippet-seo-pro
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.21 (copied) (copied from ai-snippet-seo-pro/trunk)
-
tags/1.0.21/ai-snippet-seo-pro.php (modified) (3 diffs)
-
tags/1.0.21/readme.txt (modified) (2 diffs)
-
trunk/ai-snippet-seo-pro.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ai-snippet-seo-pro/tags/1.0.21/ai-snippet-seo-pro.php
r3403707 r3406609 3 3 Plugin Name: AI Snippet SEO Pro 4 4 Description: Generate AI SEO titles and meta descriptions in one click, with scoring, live preview and bulk tools for posts and taxonomies. 5 Version: 1.0.2 05 Version: 1.0.21 6 6 Author: RankPilotAI 7 7 Author URI: https://rankpilotai.com … … 20 20 21 21 /* Version constant — basit ve PHP5 uyumlu */ 22 if ( ! defined('AISSP_VERSION') ) { if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) define('AISSP_VERSION','1.0.2 0'); }22 if ( ! defined('AISSP_VERSION') ) { if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) define('AISSP_VERSION','1.0.21'); } 23 23 function aissp_plugin_activate() { 24 24 $option_key = 'aissp_settings'; 25 $opts = get_option($option_key,[]); 26 if(!is_array($opts)) $opts=[]; 27 if(empty($opts['site_token'])){ 28 $opts['site_token'] = 'rp_'.wp_generate_password(20,false,false); 29 update_option($option_key,$opts); 30 } 25 $opts = get_option($option_key, []); 26 if ( ! is_array($opts) ) { 27 $opts = []; 28 } 29 30 if ( ! array_key_exists('site_token', $opts) ) { 31 $opts['site_token'] = ''; 32 } 33 34 update_option($option_key, $opts); 31 35 } 32 36 register_activation_hook(__FILE__,'aissp_plugin_activate'); … … 50 54 51 55 private function define_constants(){ 52 if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) define('AISSP_VERSION','1.0. 9');56 if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) define('AISSP_VERSION','1.0.21'); 53 57 define('AISSP_PATH', plugin_dir_path(__FILE__)); 54 58 define('AISSP_URL', plugin_dir_url(__FILE__)); -
ai-snippet-seo-pro/tags/1.0.21/readme.txt
r3403963 r3406609 5 5 Tested up to: 6.8.3 6 6 Requires PHP: 7.4 7 Stable tag: 1.0.2 07 Stable tag: 1.0.21 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 118 118 119 119 == Changelog == 120 = 1.0.21 = 121 * New installs start with an empty Site Key field instead of a random generated key. 120 122 121 123 = 1.0.20 = -
ai-snippet-seo-pro/trunk/ai-snippet-seo-pro.php
r3403707 r3406609 3 3 Plugin Name: AI Snippet SEO Pro 4 4 Description: Generate AI SEO titles and meta descriptions in one click, with scoring, live preview and bulk tools for posts and taxonomies. 5 Version: 1.0.2 05 Version: 1.0.21 6 6 Author: RankPilotAI 7 7 Author URI: https://rankpilotai.com … … 20 20 21 21 /* Version constant — basit ve PHP5 uyumlu */ 22 if ( ! defined('AISSP_VERSION') ) { if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) define('AISSP_VERSION','1.0.2 0'); }22 if ( ! defined('AISSP_VERSION') ) { if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) define('AISSP_VERSION','1.0.21'); } 23 23 function aissp_plugin_activate() { 24 24 $option_key = 'aissp_settings'; 25 $opts = get_option($option_key,[]); 26 if(!is_array($opts)) $opts=[]; 27 if(empty($opts['site_token'])){ 28 $opts['site_token'] = 'rp_'.wp_generate_password(20,false,false); 29 update_option($option_key,$opts); 30 } 25 $opts = get_option($option_key, []); 26 if ( ! is_array($opts) ) { 27 $opts = []; 28 } 29 30 if ( ! array_key_exists('site_token', $opts) ) { 31 $opts['site_token'] = ''; 32 } 33 34 update_option($option_key, $opts); 31 35 } 32 36 register_activation_hook(__FILE__,'aissp_plugin_activate'); … … 50 54 51 55 private function define_constants(){ 52 if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) define('AISSP_VERSION','1.0. 9');56 if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) if ( ! defined('AISSP_VERSION') ) define('AISSP_VERSION','1.0.21'); 53 57 define('AISSP_PATH', plugin_dir_path(__FILE__)); 54 58 define('AISSP_URL', plugin_dir_url(__FILE__)); -
ai-snippet-seo-pro/trunk/readme.txt
r3403963 r3406609 5 5 Tested up to: 6.8.3 6 6 Requires PHP: 7.4 7 Stable tag: 1.0.2 07 Stable tag: 1.0.21 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 118 118 119 119 == Changelog == 120 = 1.0.21 = 121 * New installs start with an empty Site Key field instead of a random generated key. 120 122 121 123 = 1.0.20 =
Note: See TracChangeset
for help on using the changeset viewer.