SEO
Fodo SEO
Complete SEO toolkit for WordPress with meta tags, sitemaps, and schema.
Fodo SEO
Meta tags, sitemaps, redirects, 404 monitoring, and schema markup. One lightweight plugin.
Core modules
| Module | Description |
|---|---|
| Meta | Title tags, meta descriptions, canonical URLs |
| Open Graph | Facebook Open Graph and Twitter Cards |
| Schema | JSON-LD structured data |
| Sitemap | XML sitemap with automatic ping on publish |
| Redirects | 301/302 redirect management |
| 404 monitor | Track and fix broken links |
| Robots | Virtual robots.txt editor |
| Analytics | Google Analytics and webmaster verification |
Installation
- Download Fodo SEO from your account
- Upload to
/wp-content/plugins/ - Activate the plugin
- Go to Fodo SEO in the admin menu
Initial setup
- Set your organization name and logo
- Configure social profiles
- Enable desired modules
- Add webmaster verification codes
Meta tags
Control how your pages appear in search results:
- Title tag: Custom title with dynamic variables
- Meta description: Compelling descriptions for each page
- Canonical URL: Prevent duplicate content issues
- Robots meta: Control indexing per page
Variables available:
%title%- Post/page title%site_name%- Site name%sep%- Separator
Open Graph and Twitter Cards
Automatic social media optimization:
- Facebook Open Graph tags
- Twitter Card markup
- Custom images per post
- Default fallback image
XML sitemaps
Automatic sitemap generation:
- Posts, pages, custom post types
- Configurable post type inclusion
- Automatic ping on publish
- Access at
/sitemap.xml
Schema markup
Automatic JSON-LD structured data:
- Article schema for posts
- Organization schema for your business
- Website schema with search box
- Breadcrumb schema for navigation
Redirects
Manage URL redirects:
- 301 (permanent) redirects
- 302 (temporary) redirects
- Bulk import/export
- Regex pattern matching
404 monitoring
Track broken links:
- Log all 404 errors
- See referrer information
- Create redirects in one click
- Clear old logs automatically
Analytics
Add tracking codes:
- Google Analytics 4
- Google Site Verification
- Bing Webmaster Tools
- Yandex Webmaster
- Pinterest Verification
Per-post settings
Each post has SEO settings in the sidebar:
- Custom title tag
- Meta description
- Open Graph image
- Robots directives (noindex, nofollow)
- Canonical URL override
REST API
Access SEO data via the REST API:
GET /wp-json/fodo-seo/v1/settings
GET /wp-json/fodo-seo/v1/redirects
POST /wp-json/fodo-seo/v1/redirectsHooks and filters
Customize behavior with WordPress hooks:
// Modify meta description
add_filter('fodo_seo_meta_description', function($description, $post) {
return $description;
}, 10, 2);
// Add custom schema
add_filter('fodo_seo_schema', function($schema, $post) {
$schema['author']['url'] = 'https://example.com/author';
return $schema;
}, 10, 2);Support
Contact support@fodo.dev. Response time: 24-48 hours.