Plugin Directory

Changeset 3487183


Ignore:
Timestamp:
03/20/2026 12:26:26 PM (7 days ago)
Author:
answerseo
Message:

Version 1.4 added LLMstxt feature, LLMs.txt and other minor changes

Location:
answer-engine-optimization-aeo-audit
Files:
9 added
2 edited

Legend:

Unmodified
Added
Removed
  • answer-engine-optimization-aeo-audit/trunk/answer-engine-optimization-aeo-audit.php

    r3460466 r3487183  
    11<?php
    22/**
    3  * Plugin Name: Answer Engine Optimization - AEO, AIO, AISEO, AI SEO, GEO Audit
     3 * Plugin Name: Answer Engine Optimization - AEO, AIO, AISEO, AI SEO, GEO, LLMs
    44 * Plugin URI: https://answerseo.com/answer-engine-optimization-aeo-audit
    5  * Description: Audit your website for Answer Engine Optimization (AEO) readiness with 10 strict checks and a clear Pass/Fail score out of 10. Also options to improve.
    6  * Version: 1.3
     5 * Description: Audit and optimize your website for Answer Engine Optimization (AEO). Manage FAQs, JSON-LD, LLMs, Speakable markup etc.. for AI Optimization (AIO).
     6 * Version: 1.4
    77 * Author: AnswerSEO
    88 * Author URI: https://answerseo.com
     
    1414}
    1515
     16require_once plugin_dir_path(__FILE__) . 'answer-engine-optimization-llms-txt.php';
     17
    1618class Aeoaudi_Audit_Plugin {
    17 
     19    private $llms_handler;
    1820    public function __construct() {
    19        
     21
     22        $this->llms_handler = new Aeoaudi_LLMs_Txt_Handler();
    2023        add_action('admin_menu', array($this, 'aeoaudi_register_menu'));
    2124        add_action('admin_enqueue_scripts', array($this, 'aeoaudi_enqueue_assets'));
     
    2528        // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- Core WP hook.
    2629        add_filter( 'the_content', array( $this, 'aeoaudi_append_faqs_to_content' ) );
     30
     31       
    2732       
    2833    }
     
    8893                80
    8994            );
     95
     96    add_submenu_page(
     97        'aeo-aio-audit',
     98        'LLMs.txt Manage',
     99        'LLMs.txt Manage',
     100        'manage_options',
     101        'ai-optimization-llms-txt',
     102        array($this, 'render_llms_txt_page')
     103    );
     104
     105   
    90106           
    91107    }
     
    227243            'nonce'    => wp_create_nonce('aeoaudi_nonce')
    228244        ));
     245    }
     246
     247    public function render_llms_txt_page() {
     248    if ($this->llms_handler) {
     249        $this->llms_handler->aeoaudi_render_admin_page();
     250    }
    229251    }
    230252
  • answer-engine-optimization-aeo-audit/trunk/readme.txt

    r3460456 r3487183  
    1 === Answer Engine Optimization - AEO, AIO, AISEO, AI SEO, GEO Audit ===
     1=== Answer Engine Optimization - AEO, AIO, AISEO, AI SEO, GEO, LLMs ===
    22Contributors: answerseo
    33Tags: Answer Engine Optimization, AEO, AI Optimization, AIO, SEO Audit
     
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.3
     7Stable tag: 1.4
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1212Author URI: https://answerseo.com
    1313
    14 Audit & Fix your website for Answer Engine / AI Optimization (AEO / AIO), AI SEO, AISEO, GEO for Google Zero position, ChatGPT, suggestion & improve.
     14Audit and optimize your website for Answer Engine Optimization (AEO). Manage FAQs, JSON-LD, LLMs Speakable markup etc.. for AI Optimization (AIO).
    1515
    1616== Description ==
    1717
    18 **Answer Engine Optimization - AEO - Audit** is a lightweight WordPress plugin that helps you prepare your website for **answer engines**, **AI Optimization**, **AI search**, and **voice assistants**.  Unlike traditional SEO audits, this plugin focuses only on **AEO/AIO elements** that improve your chances of ranking in **Position Zero**, featured snippets, and voice search results. Answer Engine Optimization also called Generative Engine Optimization (GEO), Artificial Intelligence Optimization(AIO), Google AI Overview, AEOSEO, SEO Audit, AISEO, ASEO, AI SEO, Generative AI Optimization (GAIO) etc..
     18**Answer Engine Optimization - AEO - Audit** is a lightweight WordPress plugin that helps you prepare your website for **answer engines**, **AI Optimization**, **AI search**, and **voice assistants**.  Unlike traditional SEO audits, this plugin focuses only on **AEO/AIO elements** that improve your chances of ranking in **Position Zero**, featured snippets, and voice search results. Answer Engine Optimization also called Generative Engine Optimization (GEO), Artificial Intelligence Optimization(AIO), Google AI Overview, AEOSEO, SEO Audit, AISEO, ASEO, AI SEO, Generative AI Optimization (GAIO), LLMs & LLMS.txt etc..
    1919
    2020The plugin performs **10 strict checks** on your homepage, including:
     
    3535This plugin not only helps you audit your website for AEO (Answer Engine Optimization), but also enhances your AI Optimization by enabling powerful content features:
    3636**AI Optimization Features:**
    37 ✅ Easily add structured FAQs
     37✅ Easily add structured FAQs Schema
    3838✅ Generate JSON (structured data) automatically
    3939✅ Create Quick Answers to improve featured snippet chances
    4040✅ Enhance your website’s discoverability in search and Generative AI tools
     41✅ Generate and manage LLMS.txt to optimize your site for AI answer engines
     42✅ Control AI access with Allow-AI and Disallow-AI rules
     43✅ Improve AEO visibility and AI-generated answer accuracy
    4144
    4245This plugin assist you to audit your website and provide feedback based on audit report to help for following engines:
     
    82853. Each page summary report
    83864. To Add FAQs, Quick Answer for betterment of AI Optimization
     875. Manage LLMs
    8488
    8589
     
    101105* Improved few description
    102106
     107= 1.4 =
     108* Added options to manage LLMs.txt
     109* Improved few description and text
     110
    103111== Upgrade Notice ==
    104112
Note: See TracChangeset for help on using the changeset viewer.