Changeset 3325477
- Timestamp:
- 07/10/2025 09:22:19 AM (9 months ago)
- Location:
- maio-the-new-ai-geo-seo-tool/trunk
- Files:
-
- 2 edited
-
maio-main.php (modified) (6 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
maio-the-new-ai-geo-seo-tool/trunk/maio-main.php
r3325473 r3325477 4 4 * Plugin URI: https://maioai.com 5 5 * Description: This plugin helps optimize your Website for AI-powered discovery tools such as ChatGPT, Perplexity, Claude, Google Gemini, Google AI Overviews, Meta Llama and many more. It combines the best of traditional SEO and emerging AIO strategies to ensure your brand is accurately and favorably represented in AI-generated content. 6 * Version: 4. 1.106 * Version: 4.0.16 7 7 * Requires at least: 5.0 8 8 * Requires PHP: 7.2 … … 18 18 19 19 // Define plugin constants 20 define('MAIO_VERSION', '4. 1.10');20 define('MAIO_VERSION', '4.0.16'); 21 21 define('MAIO_PLUGIN_DIR', plugin_dir_path(__FILE__)); 22 22 define('MAIO_PLUGIN_URL', plugin_dir_url(__FILE__)); … … 375 375 ); 376 376 377 // Register the AI-Friendly Article page as a hidden admin page (accessible by direct link, not shown in menu) 378 add_submenu_page( 379 null, // No parent menu, so it won't show up 377 // Register the AI-Friendly Article page as a hidden admin page 378 add_menu_page( 380 379 esc_html__('AI-Friendly Content Guide', 'maio-the-new-ai-geo-seo-tool'), 381 '', // No menu title, so it won't show up380 '', // Empty menu title to hide it 382 381 'manage_options', 383 382 'maio-ai-friendly-article', 384 'maio_ai_friendly_article_page' 383 'maio_ai_friendly_article_page', 384 '', 385 null // No menu position 385 386 ); 387 // Remove the submenu to prevent it from showing up 388 remove_submenu_page('maio-ai-friendly-article', 'maio-ai-friendly-article'); 386 389 } 387 390 add_action('admin_menu', 'maio_register_admin_menu'); … … 672 675 update_option('maio_brand_logo_url', $site_icon_url); 673 676 } 674 675 if (get_option('maio_first_version', '') === '') {676 update_option('maio_first_version', MAIO_VERSION);677 }678 if (get_option('maio_first_install_time', '') === '') {679 update_option('maio_first_install_time', current_time('mysql'));680 }681 if (get_option('maio_site_uuid', '') === '') {682 update_option('maio_site_uuid', wp_generate_uuid4());683 }684 685 677 flush_rewrite_rules(); 686 678 }); … … 2142 2134 $first_install_time = get_option('maio_first_install_time'); 2143 2135 2144 $event_type = 'install';2145 if ($first_version && $first_version !== MAIO_VERSION) {2146 $event_type = 'upgrade';2147 }2148 2149 2136 $payload = array( 2150 2137 'site_url' => home_url(), … … 2155 2142 'wp_version' => get_bloginfo('version'), 2156 2143 'php_version' => phpversion(), 2157 'locale' => get_locale(), 2158 'event_type' => $event_type, 2144 'locale' => get_locale() 2159 2145 ); 2160 2146 -
maio-the-new-ai-geo-seo-tool/trunk/readme.txt
r3325473 r3325477 3 3 Tags: geo, seo, ai, chatgpt, google ai overviews 4 4 Requires at least: 5.0 5 Tested up to: 6.8 .26 Stable tag: 4. 1.105 Tested up to: 6.8 6 Stable tag: 4.0.16 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 39 39 == Changelog == 40 41 = 4.1.10 =42 * Installation improvements and bugs fixes43 40 44 41 = 4.0.16 =
Note: See TracChangeset
for help on using the changeset viewer.