da3b582a63ea9d74ae3808f417206b22a77b2a50
Build WordPress Plugin (XML-driven) / build-release (push) Failing after 24s
Advanced SEO Meta + AI FAQ Schema
Advanced SEO Meta + AI FAQ Schema is a lightweight WordPress plugin that adds fine-grained control over page titles, meta descriptions, Open Graph tags, and automatic JSON-LD FAQ output to improve visibility in classic search and AI-powered search experiences.
Summary
- One-line: Add custom SEO title, meta description, Open Graph and FAQ JSON-LD for posts and pages.
Requirements
- WordPress 5.8 or later
- PHP 7.4 or later
Features
- Custom SEO title field for posts and pages
- Custom meta description field for improved search snippets
- FAQ builder to add multiple questions and answers per post/page
- Automatic JSON-LD
FAQPageschema output for AI search engines (Google SGE, Bing Chat, etc.) - Open Graph meta tags for Facebook, LinkedIn, and other social previews
- Clean meta box in the WordPress editor for quick optimization
What the plugin adds
When editing a post or page you can enter:
- SEO Title
- Meta Description
- FAQ questions and answers
On the front end the plugin outputs:
- A page title override when provided
- A meta description tag
- Open Graph meta tags
- Structured FAQ schema in JSON-LD format
Installation
- Upload the plugin folder to your WordPress installation's
wp-content/plugins/directory and activate it underPlugins→Installed Plugins. - Or install from ZIP:
Plugins→Add New→Upload Plugin→ choose the ZIP and clickInstall Now. - After activation, edit any post or page and look for the "Advanced SEO & AI FAQ Schema" meta box in the editor.
Usage
- Open a post or page in the editor.
- Fill in the custom SEO Title and Meta Description as needed.
- Use the FAQ builder to add one or more question/answer pairs.
- Publish or update the post — the JSON-LD will be added to the page head automatically.
Example JSON-LD output
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What does this plugin do?",
"acceptedAnswer": {
"@type": "Answer",
"text": "It adds custom SEO title, meta description, Open Graph tags and FAQ JSON-LD to posts and pages."
}
}
]
}
Configuration & Developer Hooks
The plugin provides filters and actions so developers can modify output or integrate with other plugins:
- Filter
aseo_meta_title— modify the computed SEO title - Filter
aseo_meta_description— modify the meta description - Filter
aseo_faq_schema— modify the generated FAQ JSON-LD array before encoding - Action
aseo_faq_saved— runs after FAQ entries are saved for a post
Example (in your theme or plugin):
add_filter('aseo_meta_title', function($title, $post_id){
return $title . ' | My Site';
}, 10, 2);
Changelog
- 3.0.0 — Initial release: SEO title, meta description, Open Graph, FAQ builder, JSON-LD output
Support
Open an issue in the repository or contact the maintainer for feature requests and bugs.
Notes
- Designed for posts and pages. Best used alongside strong on-page content and standard SEO practices.
- FAQ schema helps AI-driven search experiences surface clear Q&A content.
Description
Full SEO meta box (Title, Description) + built-in FAQ builder with JSON-LD Schema for AI search engines.
76 KiB