Fodo Docs
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

ModuleDescription
MetaTitle tags, meta descriptions, canonical URLs
Open GraphFacebook Open Graph and Twitter Cards
SchemaJSON-LD structured data
SitemapXML sitemap with automatic ping on publish
Redirects301/302 redirect management
404 monitorTrack and fix broken links
RobotsVirtual robots.txt editor
AnalyticsGoogle Analytics and webmaster verification

Installation

  1. Download Fodo SEO from your account
  2. Upload to /wp-content/plugins/
  3. Activate the plugin
  4. Go to Fodo SEO in the admin menu

Initial setup

  1. Set your organization name and logo
  2. Configure social profiles
  3. Enable desired modules
  4. 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/redirects

Hooks 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.