Changeset 3419583
- Timestamp:
- 12/14/2025 09:59:50 PM (3 months ago)
- Location:
- maio-the-new-ai-geo-seo-tool/trunk
- Files:
-
- 4 deleted
- 3 edited
-
css/maio_analytics.css (deleted)
-
js/maio_analytics.js (deleted)
-
maio-activity-api.php (modified) (1 diff)
-
maio-analytics-api.php (deleted)
-
maio-main.php (modified) (2 diffs)
-
maio_analytics.php (deleted)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
maio-the-new-ai-geo-seo-tool/trunk/maio-activity-api.php
r3419567 r3419583 205 205 ); 206 206 207 // Filter out non-content files (fonts, scripts, styles, etc.) 208 $filtered_pages = array_filter($pages, function($page_data) { 209 return maio_is_content_page($page_data['page_url']); 210 }); 211 207 212 // Format pages 208 foreach ($ pages as &$page_data) {213 foreach ($filtered_pages as &$page_data) { 209 214 $page_data['llm_ids'] = explode(',', $page_data['llm_ids']); 210 215 $page_data['crawl_frequency'] = floatval($page_data['crawl_count']) / 30; // Per day 211 216 } 212 217 218 // Recalculate total after filtering 219 $filtered_total = count($filtered_pages); 220 213 221 $response = array( 214 222 'success' => true, 215 'total_pages' => intval($ total),223 'total_pages' => intval($filtered_total), 216 224 'page' => intval($page), 217 225 'per_page' => intval($per_page), 218 'pages' => $pages226 'pages' => array_values($filtered_pages) // Re-index array after filtering 219 227 ); 220 228 -
maio-the-new-ai-geo-seo-tool/trunk/maio-main.php
r3419567 r3419583 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: 5.3.1 06 * Version: 5.3.11 7 7 * Requires at least: 5.0 8 8 * Requires PHP: 7.2 … … 16 16 17 17 // Define plugin constants 18 define('MAIO_VERSION', '5.3.1 0');18 define('MAIO_VERSION', '5.3.11'); 19 19 define('MAIO_PLUGIN_DIR', plugin_dir_path(__FILE__)); 20 20 define('MAIO_PLUGIN_URL', plugin_dir_url(__FILE__)); -
maio-the-new-ai-geo-seo-tool/trunk/readme.txt
r3419567 r3419583 3 3 Tags: ai, ai seo, chatgpt, claude, gemini 4 4 Requires at least: 5.0 5 Tested up to: 6. 8.26 Stable tag: 5.3.1 05 Tested up to: 6.9 6 Stable tag: 5.3.11 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 = 5.3.1 0=40 = 5.3.11 = 41 41 * Added AI Analytics submenu for MAIO web dashboard integration 42 42 * Analytics Dashboard Access - Direct link to view website analytics on maioai.com
Note: See TracChangeset
for help on using the changeset viewer.