Documentation
Dynamic Content Manager v2.1
📦
Installation
Download the plugin from your DCM dashboard. You need an active license to download.
- Go to your dashboard and click Download Plugin.
- In WordPress: Plugins → Add New → Upload Plugin.
- Select the downloaded
dynamic-content-manager.zipfile. - Click Install Now, then Activate.
🔑
License Activation
After installation, activate your license key from the WordPress admin:
- Navigate to Settings → Dynamic Content Manager → License.
- Paste your license key (format:
DCM-XXXXXX-XXXXXX-XXXXXX-XXXXXX). - Click Activate License.
- 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:
- Go to DCM → Automations → Add New.
- Name your automation (e.g., City Landing Page).
- In your page/template, use shortcodes like
[dcm key="city"]. - In each child page, set the value for
cityto e.g. New York, Los Angeles, etc. - 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