Changeset 3241060
- Timestamp:
- 02/15/2025 06:26:31 PM (14 months ago)
- Location:
- quickpressai/trunk
- Files:
-
- 2 edited
-
quickpressai.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quickpressai/trunk/quickpressai.php
r3240810 r3241060 3 3 Plugin Name: QuickPress AI 4 4 Description: Quickly generate high-quality content in WordPress with an AI writing assistant that prioritizes creative freedom, flexibility, and ease of use. 5 Version: 1.9. 15 Version: 1.9.2 6 6 Author: QuickPress AI 7 7 Author URI: https://quickpressai.com/ … … 17 17 } 18 18 19 define('QUICKPRESS_AI_VERSION', '1.9. 1');19 define('QUICKPRESS_AI_VERSION', '1.9.2'); 20 20 define('QUICKPRESS_AI_DEBUG', false); 21 21 … … 1480 1480 function quickpress_ai_uninstall() { 1481 1481 global $wpdb; 1482 $options = [ 1483 'quickpress_ai_api_key', 1484 'quickpress_ai_encryption_key', 1485 'quickpress_ai_system_prompt', 1486 'quickpress_ai_system_prompt_option', 1487 'quickpress_ai_selected_model', 1488 'quickpress_ai_title_prompt_template', 1489 'quickpress_ai_content_prompt_template', 1490 'quickpress_ai_excerpt_prompt_template', 1491 'quickpress_ai_temperature', 1492 'quickpress_ai_frequency_penalty', 1493 'quickpress_ai_presence_penalty', 1494 'quickpress_ai_generate_timeout', 1495 'quickpress_ai_serpstack_api_key' 1496 ]; 1497 foreach ($options as $option) { 1498 delete_option($option); 1499 } 1500 $wpdb->query("DELETE FROM {$wpdb->options} WHERE option_name LIKE 'quickpress_ai_keyword_data_%'"); 1482 $wpdb->query("DELETE FROM {$wpdb->options} WHERE option_name LIKE 'quickpress_ai_%'"); 1501 1483 if (is_multisite()) { 1502 $wpdb->query("DELETE FROM {$wpdb->sitemeta} WHERE meta_key LIKE 'quickpress_ai_ keyword_data_%'");1503 } 1504 } 1484 $wpdb->query("DELETE FROM {$wpdb->sitemeta} WHERE meta_key LIKE 'quickpress_ai_%'"); 1485 } 1486 } -
quickpressai/trunk/readme.txt
r3240810 r3241060 5 5 Tags: ai, seo, automation, content generator, content creation 6 6 Tested up to: 6.7 7 Stable tag: 1.9. 17 Stable tag: 1.9.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 71 71 == Changelog == 72 72 73 = 1.9.2 = 74 * Optimized option cleanup process during plugin uninstallation 75 73 76 = 1.9.1 = 74 77 * Added Keyword Creator feature
Note: See TracChangeset
for help on using the changeset viewer.