Reference

SEO

OForumorravo.com/docs/oforum/seo

Breadcrumbs

Breadcrumbs are rendered on all forum pages using the OF_SEO::render_breadcrumbs() method, which includes BreadcrumbList Schema.org markup.

php// Forum index
OF_SEO::render_breadcrumbs();

// Room page
OF_SEO::render_breadcrumbs($room);

// Thread page
OF_SEO::render_breadcrumbs($room, $thread);

DiscussionForumPosting schema

On thread pages, OF_SEO::inject_schema() outputs a <script type="application/ld+json"> block with DiscussionForumPosting structured data including headline, author, date, reply count, and first 5 reply comments.

Page titles

The plugin filters document_title_parts and wp_title to set proper titles:

  • Thread page: Thread Title — Site Name
  • Room page: Room Name — Forum — Site Name

Sitemap

OForum integrates with Yoast SEO (wpseo_sitemap_index_links) and The SEO Framework (the_seo_framework_sitemap_urls) to include thread URLs. The 200 most recently modified published threads are added.


SEO — OForum Docs — Orravo