Documentation

Dynamic Content Manager v2.1

📦

Installation

Download the plugin from your DCM dashboard. You need an active license to download.

  1. Go to your dashboard and click Download Plugin.
  2. In WordPress: Plugins → Add New → Upload Plugin.
  3. Select the downloaded dynamic-content-manager.zip file.
  4. Click Install Now, then Activate.

🔑

License Activation

After installation, activate your license key from the WordPress admin:

  1. Navigate to Settings → Dynamic Content Manager → License.
  2. Paste your license key (format: DCM-XXXXXX-XXXXXX-XXXXXX-XXXXXX).
  3. Click Activate License.
  4. Your plan features will unlock immediately.
⚠️ Each license key can only be activated on a limited number of domains (based on your plan). Deactivate unused domains from your dashboard if needed.

🚀

Quick Start

Create your first automation in under 5 minutes:

  1. Go to DCM → Automations → Add New.
  2. Name your automation (e.g., City Landing Page).
  3. In your page/template, use shortcodes like [dcm key="city"].
  4. In each child page, set the value for city to e.g. New York, Los Angeles, etc.
  5. Publish. DCM renders the unique value on each URL.

[ ]

Shortcode Reference

Shortcode Description
[dcm key="name"] Outputs the value assigned to "name" for the current page.
[dcm key="name" default="fallback"] Outputs the value, or "fallback" if no value is set.
[dcm_if key="name" value="NYC"]…[/dcm_if] Conditionally renders content when key equals value.
[dcm_replace find="old" replace="new"] One-time inline replacement (Pro+).

📡

License API Reference

The plugin communicates with the license server at these endpoints:

POST
/api/license/activate
Activate a license on a domain. Params: license_key, domain.
POST
/api/license/deactivate
Deactivate a domain. Params: license_key, domain.
GET
/api/license/verify
Verify license status. Params: license_key, domain.

📝

Changelog

v2.1 Latest
  • Improved license verification caching (24h)
  • Added REST API endpoints module (Pro+)
  • Performance improvements to automation rendering
v2.0 2024-09
  • Complete rewrite with modular architecture
  • Slug Manager module added
  • Custom Code module added
v1.5 2024-03
  • Image Alt Manager introduced
  • Bulk operations support
  • Bug fixes