✨ 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 Code Snippets Cloud: snippets and cloud sync as tables

Code Snippets Cloud syncs PHP, JS, and CSS snippets between sites through the Code Snippets plugin and a hosted cloud library. SleekView reads the local wp_snippets table plus the cloud sync metadata so you can audit every snippet, its scope, its origin, and its sync state in one grid.

♾️ Lifetime License available

SleekView table view for Code Snippets Cloud

Every snippet and its sync state in one grid

Code Snippets Cloud extends the free Code Snippets plugin, which stores every snippet as a row in wp_snippets with columns for name, code, scope, active, priority, and modified. The Cloud extension adds cloud-sync metadata, including the cloud ID, codevault, and last-synced timestamp, kept in the same row or in wp_options under code_snippets_cloud_*. The plugin's default list screen paginates the snippets table and filters by scope, but cannot show cloud ID, codevault, or last-synced state next to scope and priority on the same row.

SleekView reads wp_snippets directly and exposes every column the schema defines. Scope (global, admin, frontend, single-use), active flag, priority, codevault name, and last-synced time become first-class sortable columns. Saved views can pin out-of-sync snippets, deactivated snippets older than six months, or every snippet in one codevault across the network.

Inline edits route through the Code Snippets API, so activation hooks, scope changes, and code edits fire the plugin's normal save handlers and re-validate the snippet before it persists. Bulk activate, deactivate, or re-sync runs through the same code path the cloud panel uses, so the audit trail in wp_options stays consistent.

Workflow

From scattered snippets to a real inventory

1

Connect the snippets table

Point SleekView at wp_snippets. The grid auto-detects every column Code Snippets defines plus the cloud metadata kept in wp_options under code_snippets_cloud_*.
2

Compose your columns

Show name, scope, active, priority, codevault, and last-synced. Hide the code body unless someone explicitly needs to inspect it from the list.
3

Save inventory views

Build a Drifted view, a Per-codevault view, and an Inactive over 6 months view. Each view persists per user and scopes to one site or the whole network.
4

Edit or re-sync inline

Toggle active, edit priority, or trigger a bulk cloud re-sync. Every write goes through the Code Snippets API so hooks run and the audit log stays consistent.

Sample columns

A typical Code Snippets Cloud snippets view

Snippets with scope, priority, codevault, and last-synced state in one grid.
Source: wp_snippets + wp_options (code_snippets_cloud_*)
Name Scope Active Codevault Last synced Status
Disable XML-RPC global yes core-hardening Apr 24 Synced
Remove WP version global yes core-hardening Apr 24 Synced
Custom order email admin no client-acme Mar 12 Drifted
Hide admin bar for subscribers frontend yes client-acme Feb 03 Conflict

Comparison

Default Code Snippets Cloud admin vs SleekView

Default Code Snippets Cloud admin

  • Snippet list shows a fixed set of columns and does not surface codevault or last-synced state next to scope
  • Filtering combines scope and active flag but not cloud origin or codevault name
  • Cloud sync state lives on a separate panel, away from the main wp_snippets list
  • No saved views per codevault, scope, or active flag
  • Bulk re-sync requires opening the Cloud tab and selecting from a smaller list

SleekView

  • Read wp_snippets with scope, active, priority, codevault, and last-synced columns side by side
  • Filter by codevault name, scope, or sync state in one query
  • Save views like Drifted snippets or Inactive over 6 months
  • Inline toggle active and edit priority without opening the snippet
  • Bulk re-sync drifted snippets through the plugin's own cloud API

Features

What SleekView gives you for Code Snippets Cloud

Sync state column

Pin Synced, Drifted, and Conflict states as their own column next to scope and codevault. The default list keeps that signal one tab away, so drift goes unnoticed until something breaks.

Codevault filter

Slice the grid by codevault to audit only the snippets pulled from a shared library. Useful when one team manages core-hardening and another manages client-specific business logic.

Inline activate

Toggle active from the row. The Code Snippets activation hook still runs, so the snippet validates and registers normally instead of being flipped in the database raw.

Audience

Who uses SleekView for Code Snippets Cloud

Agency teams

Audit which client sites are running which version of a shared snippet by filtering on codevault and last-synced. Spot the site that diverged from the master copy in seconds.

Security leads

Confirm hardening snippets are active and synced across every site. Save a view of inactive or drifted security snippets and review it as part of the weekly audit.

Site admins

Manage scope, priority, and active flag inline. Stop opening each snippet to flip a checkbox when ten snippets need to change at once.

The bigger picture

Why a snippet inventory matters for agencies

Code Snippets Cloud was built to solve a real problem: every WordPress operator ends up with dozens of small PHP, JS, and CSS rules that have to ship to many sites, and copying them by hand stops scaling around the third site. The cloud library fixes the distribution problem. It does not fix the inventory problem.

Once snippets are syncing to twenty sites, you need to see at a glance which snippets are active where, which have drifted from the canonical version, and which codevault each one belongs to. The default list shows one site at a time and hides cloud state behind a separate tab, which is fine for a single site and painful at agency scale. A real grid built on wp_snippets plus the cloud metadata gives you the auditable inventory that maintenance and security work actually need.

It also gives bulk operations a sensible home: re-sync a codevault, deactivate every snippet from a deprecated library, flip priority on a hot patch. The snippet is still owned by Code Snippets. The view is just where the team actually works.

Questions

Common questions about SleekView for Code Snippets Cloud

Yes. The grid queries wp_snippets on every load, so what you see matches the database row by row. Scope, active flag, priority, and the snippet's modified timestamp are all surfaced as sortable columns.

 

Yes. SleekView writes through the Code Snippets API rather than updating wp_snippets.active directly, so activation and deactivation hooks run as expected and the snippet is re-validated before the row is persisted.

 

Yes. The cloud metadata stored alongside each snippet becomes a filterable column. You can scope the grid to one codevault, compare two side by side with saved views, or pin every snippet that has no cloud link yet.

 

Yes. SleekView reads the last-synced timestamp and the cloud revision stored in wp_options under the code_snippets_cloud_* keys and renders a Drifted or Conflict state when the local copy diverges from the cloud version.

 

Yes. Select rows in the grid and run a bulk re-sync. The action calls the same Cloud API the plugin's own panel uses, so audit logs and cloud-side revision history stay consistent.

 

Code Snippets supports a content-security mode that exports snippets to wp-content/code-snippets as PHP files. SleekView still reads wp_snippets as the canonical record and shows whether each row is currently exported.

 

Yes. wp_snippets is a flat indexed table, so pagination is server-side and queries stay fast even across multisite networks where one shared codevault is pushed to dozens of sites.

 

Yes. Apply filters first, then export the visible columns to CSV. Hand a list of every active security snippet to a client, or archive a deprecated codevault before clearing it from the network.

 

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