✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount
✨ New Plugin Alert ✨ SleekRank is now available with €50 launch discount

SleekView for BetterDocs Pro: knowledge-base articles as tables

BetterDocs stores articles as the docs post type with categories, tags, and analytics counters in postmeta. SleekView pivots that into an editorial table with per-product saved views and inline status edits that fire BetterDocs hooks normally.

♾️ Lifetime License available

SleekView table view for BetterDocs Pro

Editorial triage for a knowledge base

BetterDocs models a knowledge base as a custom post type (docs) with categories and tags as taxonomies, plus analytics counters (views, helpful votes, unhelpful votes) stored in _betterdocs_* postmeta. The default plugin admin shows articles as a stock WordPress post list. Editorial decisions like "which articles in the Billing category have low helpful-vote ratios and haven't been updated in 90 days?" require either an export or manual filtering.

SleekView reads wp_posts with post_type=docs and the matching wp_postmeta rows, then pivots them into a sortable, filterable table. Category, tag, last-updated date, view count, helpful-ratio, and assigned author become first-class columns. Saved views like "Billing articles with helpful ratio below 60%, sorted by view count descending" become one-click reloads for the docs team's weekly review.

Inline edits to status, category, and assigned author route through WordPress core functions (which is how BetterDocs reads them on its side) so BetterDocs caches invalidate normally and the front-end help center reflects changes immediately.

Workflow

From BetterDocs custom post type to an editorial table

1

Read the docs model

SleekView detects BetterDocs and registers the docs post type, the doc_category and doc_tag taxonomies, and the _betterdocs_* postmeta keys as an editorial source.
2

Derive analytics columns

View count, helpful count, and unhelpful count come from postmeta. SleekView computes helpful-ratio as a derived column so editorial review focuses on articles users actually rate poorly.
3

Save review views

Save a view per category and per author with last-updated and helpful-ratio filters baked in. The weekly editorial pass becomes a single-screen exercise instead of three filter steps.
4

Edit inline

Status, category, and author edits route through wp_update_post and wp_set_object_terms. BetterDocs caches invalidate normally and the help center reflects changes on the next request.

Sample columns

An editorial KB review view

One row per article with category, helpful ratio, views, and last update.
Source: wp_posts (post_type=docs) + wp_postmeta + wp_term_relationships
Article Category Helpful % Views Status Updated
How to issue a refund Billing 58% 4,210 Needs review Apr 12
Connecting Stripe Billing 92% 8,015 Published Sep 02
Resetting your password Account 88% 11,432 Published Aug 18
Legacy API guide Developer 31% 212 Outdated Feb 04

Comparison

Default BetterDocs Pro admin vs SleekView

Default BetterDocs Pro admin

  • Default docs list uses stock WordPress columns with no analytics surfacing
  • Helpful and unhelpful vote counts live in postmeta but aren't shown inline
  • View counts aren't sortable in the default admin
  • No saved per-category editorial review views
  • Bulk status changes go one article at a time

SleekView

  • Surface _betterdocs_views, helpful, and unhelpful counters as columns
  • Compute helpful-ratio as a derived column for editorial review
  • Inline status, category, and author edits using WordPress core APIs
  • Filter by last-updated age plus low helpful ratio for content audits
  • Save views per category and per author for distributed docs teams

Features

What SleekView gives you for BetterDocs Pro

Analytics-aware columns

BetterDocs increments view, helpful, and unhelpful counters in postmeta. SleekView reads them directly and exposes a derived helpful-ratio column so editorial reviews focus on articles users actually struggle with.

Per-category review queues

Save a view per docs category with last-updated and helpful-ratio filters baked in. The Billing team reviews its own articles weekly without filtering a global list.

Inline editorial edits

Status, category, and assigned author edits route through wp_update_post. BetterDocs caches invalidate normally and the front-end help center reflects changes on the next request.

Audience

Who uses SleekView for BetterDocs Pro

Docs writers

Personal review queues filtered to articles they wrote or own, with last-updated age and helpful ratio visible. The weekly editorial pass becomes a single-screen exercise.

Editorial leads

Workload-per-writer and content-health views across categories. Spot which articles are underperforming and reassign updates without writing a single SQL query.

Support managers

Cross-reference articles with helpful-vote ratios against support-ticket categories. Articles with low helpful scores in high-ticket categories surface as priority rewrites.

The bigger picture

Why a knowledge base needs editorial triage, not a plain post list

Knowledge bases age in a way blog posts do not. A blog post is a snapshot in time; an article is a contract with users that the documented behaviour matches the product. When the product changes and the article doesn't, the article actively does harm: users follow stale instructions, fail, and open support tickets that should never have existed.

BetterDocs gets the publishing surface right and stores enough analytics signal to detect which articles are drifting (helpful-vote ratios, view counts, last-updated dates). What it doesn't ship is an editorial triage view that lets a docs team find the rotting articles before users do. SleekView fills that gap without adding any new data model.

Helpful ratios derive from existing postmeta, last-updated dates come from post_modified, categories drive saved-view scopes, and inline status and category edits route through WordPress core so BetterDocs caches invalidate normally. The weekly editorial review becomes a single screen: open the saved view, sort by helpful-ratio ascending filtered by last-update over 90 days, work through the top 10 articles, ship updates. The knowledge base stays accurate, which is the whole point of having one in the first place.

Questions

Common questions about SleekView for BetterDocs Pro

Yes. Categories and tags are stored as the doc_category and doc_tag taxonomies. SleekView reads them as filterable columns and saved-view scopes. Multi-category articles work as expected because the taxonomy is a many-to-many relationship at the database level.

 

BetterDocs increments _betterdocs_views and the helpful counters in postmeta on each page view or vote. SleekView reads those values directly. If you've enabled the BetterDocs Pro analytics module with its own table (depending on plugin version), the source switches automatically to the dedicated table for higher accuracy.

 

Yes. post_author is a first-class column. Saved views per author let distributed docs teams own their slice of the KB. Editorial leads can build cross-author views to identify ownership gaps or workload imbalance.

 

Yes. SleekView honors BetterDocs's role caps (edit_doc, publish_docs, and the standard WordPress post caps) so contributors only see and edit articles they're allowed to. Saved views render correctly per-user even when a wider role saved them originally.

 

Yes. Inline edits go through wp_update_post and the standard WordPress action hooks, which means BetterDocs's own cache layer (built on transients and object cache) invalidates exactly as it does for edits made through the post editor. The front-end help center reflects changes on the next request.

 

Yes. Select rows and change the category taxonomy inline. SleekView writes through wp_set_object_terms so taxonomy hooks fire and category counters update. Bulk recategorisation is a common pattern when restructuring the help center information architecture.

 

BetterDocs Pro's AI features (suggested content, AI search hints) run on the article record itself. SleekView doesn't trigger AI re-generation, but inline edits to article content fire the same hooks the post editor does, so any AI hook BetterDocs has registered for the save_post event continues to run.

 

Yes. Any saved view exports to CSV with the columns and filters as configured. A common audit pattern is per-category exports of articles ordered by helpful ratio ascending, which gives a content lead a prioritised rewrite list ready for a sprint plan.

 

Pricing

More than 1000+
happy customers

Explore our flexible licensing options tailored to your needs. Upgrade your license anytime to access more features, or opt for a lifetime license for ongoing value, including lifetime updates and lifetime support. Our hassle-free upgrade process ensures that our platform can grow with you, starting from whichever plan you choose.

Starter

€79

EUR

per year

  • 3 websites
  • 1 year of updates
  • 1 year of support

Pro

€149

EUR

per year

  • Unlimited websites
  • 1 year of updates
  • 1 year of support

Lifetime ♾️

Most popular

€249

EUR

once

  • Unlimited websites
  • Lifetime updates
  • Lifetime support

...or get the Bundle Deal
and save €250 🎁

The Bundle (unlimited sites)

Pay once, own it forever

Elevate your WordPress site with our exclusive plugin bundle that includes all of our premium plugins in one package. Enjoy lifetime updates and lifetime support. Save significantly compared to buying plugins individually.

What’s included

  • SleekAI

  • SleekByte

  • SleekMotion

  • SleekPixel

  • SleekRank

  • SleekView