plugin-icon

Paradarum CDN Purge

paradarum yazdı·
Automatically purges the Paradarum CDN cache for the routes affected whenever you publish or modify content.
Sürüm
1.0.0
Son güncellenme
Jul 20, 2026
Paradarum CDN Purge

When you publish, update, unpublish or trash a post or page — or edit a term, or a comment is approved — this plugin invalidates the affected CDN routes through the Paradarum API, using your account API key.

It does not just purge the single post: it also purges the home page, the relevant category/tag/taxonomy archives, author and date archives, feeds and sitemaps, so visitors never see a stale listing.

How it decides what to purge

  • Hybrid (recommended): the post and the home are purged by exact path; archives and listings are purged by path prefix (starts_with) so their pagination (/page/2/, …) is invalidated too.
  • Surgical: only exact URLs are purged (archive pagination may stay cached).
  • Broad: any change flushes the whole site cache.

All routes affected during a request are collected, de-duplicated and sent to the API in a single batch call on shutdown, so saving in the editor is never slowed down by many HTTP requests. If a single save or import touches more paths than the configurable threshold, the plugin collapses everything into one full-site purge instead.

Requirements

This plugin requires a Paradarum CDN account: your site must be configured as a property on the Paradarum CDN, and you need an API key generated from the Paradarum console. Without an account the plugin has nothing to purge.

External services

This plugin connects to the Paradarum CDN API (https://api.paradarum.com), the service that hosts and caches your site’s content. This connection is the core purpose of the plugin and cannot be disabled.

What is sent, and when:

  • Your account API key (as the X-API-Key request header) — on every API call, to authenticate.
  • When you click Check & detect in the settings: a request to list the properties (sites) of your account, so the plugin can match this site’s domain.
  • When content changes (publish/update/trash of posts or pages, term edits, comment approval) and when you use the manual purge tools or WP-CLI commands: the property id and the list of URL paths to invalidate (for example /my-post/ or /category/news/).

No visitor data, personal data, analytics or telemetry is ever transmitted. Requests are only sent after you have configured your own API key.

This service is provided by Paradarum: terms of serviceprivacy policy.

WP-CLI

wp paradarum status wp paradarum purge --all wp paradarum purge --url=/blog/ wp paradarum purge --post=42<h3>Developer hooks</h3>

Trigger a purge from your own code:

do_action( 'paradarum_purge', array( home_url( '/landing/' ) ) ); do_action( 'paradarum_purge', 'all' );

Filter the final purge items before they are sent:

add_filter( 'paradarum_cdn_purge_items', function ( $items, $trigger ) { return $items; }, 10, 2 );
Ücretsiz(ücretli paketlerde)
Kurulum işlemini tamamlayarak, WordPress.com'un Hizmet Şartları ile Üçüncü Taraf Eklenti Şartlarını kabul etmiş olursunuz.
Test edilen son sürüm
WordPress 7.0.2
Bu eklenti, sitenizde kullanılmak üzere indirilebilir.