Plugin Directory

Changeset 3419583


Ignore:
Timestamp:
12/14/2025 09:59:50 PM (3 months ago)
Author:
ashleysmith1
Message:

Update to version 5.3.11

Location:
maio-the-new-ai-geo-seo-tool/trunk
Files:
4 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • maio-the-new-ai-geo-seo-tool/trunk/maio-activity-api.php

    r3419567 r3419583  
    205205    );
    206206   
     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   
    207212    // Format pages
    208     foreach ($pages as &$page_data) {
     213    foreach ($filtered_pages as &$page_data) {
    209214        $page_data['llm_ids'] = explode(',', $page_data['llm_ids']);
    210215        $page_data['crawl_frequency'] = floatval($page_data['crawl_count']) / 30; // Per day
    211216    }
    212217   
     218    // Recalculate total after filtering
     219    $filtered_total = count($filtered_pages);
     220   
    213221    $response = array(
    214222        'success' => true,
    215         'total_pages' => intval($total),
     223        'total_pages' => intval($filtered_total),
    216224        'page' => intval($page),
    217225        'per_page' => intval($per_page),
    218         'pages' => $pages
     226        'pages' => array_values($filtered_pages)  // Re-index array after filtering
    219227    );
    220228   
  • maio-the-new-ai-geo-seo-tool/trunk/maio-main.php

    r3419567 r3419583  
    44 * Plugin URI: https://maioai.com
    55 * 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.10
     6 * Version: 5.3.11
    77 * Requires at least: 5.0
    88 * Requires PHP: 7.2
     
    1616
    1717// Define plugin constants
    18 define('MAIO_VERSION', '5.3.10');
     18define('MAIO_VERSION', '5.3.11');
    1919define('MAIO_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2020define('MAIO_PLUGIN_URL', plugin_dir_url(__FILE__));
  • maio-the-new-ai-geo-seo-tool/trunk/readme.txt

    r3419567 r3419583  
    33Tags: ai, ai seo, chatgpt, claude, gemini
    44Requires at least: 5.0
    5 Tested up to: 6.8.2
    6 Stable tag: 5.3.10
     5Tested up to: 6.9
     6Stable tag: 5.3.11
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838
    3939== Changelog ==
    40 = 5.3.10 =
     40= 5.3.11 =
    4141* Added AI Analytics submenu for MAIO web dashboard integration
    4242* Analytics Dashboard Access - Direct link to view website analytics on maioai.com
Note: See TracChangeset for help on using the changeset viewer.