Title: Overedge Connector
Author: timothyolu
Published: <strong>25 مارس، 2026</strong>
Last modified: 12 يونيو، 2026

---

البحث عن الإضافات

![](https://ps.w.org/overedge-connector/assets/banner-772x250.png?rev=3491123)

![](https://ps.w.org/overedge-connector/assets/icon.svg?rev=3491123)

# Overedge Connector

 بواسطة [timothyolu](https://profiles.wordpress.org/timothyolu/)

[تنزيل](https://downloads.wordpress.org/plugin/overedge-connector.1.3.0.zip)

 * [تفاصيل](https://ar.wordpress.org/plugins/overedge-connector/#description)
 * [المراجعات](https://ar.wordpress.org/plugins/overedge-connector/#reviews)
 *  [التنصيب](https://ar.wordpress.org/plugins/overedge-connector/#installation)
 * [التطوير](https://ar.wordpress.org/plugins/overedge-connector/#developers)

 [الدعم](https://wordpress.org/support/plugin/overedge-connector/)

## الوصف

**Overedge Connector** is the bridge between your WordPress content and your React
frontend.

Whether you built your site with Lovable, Vite, Next.js, or plain React — Overedge
Connector turns your WordPress installation into a fully configured headless CMS
that your React app can fetch from instantly.

#### External Services

This plugin optionally connects to the Overedge platform (https://overedge.dev) 
to automate the connection setup between your React frontend and WordPress. This
connection is initiated manually by the site administrator and can be used without
the platform entirely.

The Overedge platform stores only site URLs and plugin health status. No content
or personal data is transmitted.

Privacy policy: https://overedge.dev/privacy
 Terms of service: https://overedge.
dev

#### What It Does

Once activated, Overedge Connector automatically:

 * Registers **custom post types** — Testimonials, Team Members, and FAQs — all 
   exposed via the REST API
 * Configures **Advanced Custom Fields** field groups for each post type
 * Enables and configures the **WordPress REST API** for headless use
 * Handles **CORS headers** so your React frontend can fetch content cross-origin
 * Creates a **site-wide options panel** for managing global settings (hero text,
   stats, CTAs, contact details)
 * Exposes a **health endpoint** at `/wp-json/overedge/v1/health` so your frontend
   can monitor the connection
 * Generates a **secret key** for secure webhook verification

#### Who Is It For?

 * **Vibe coders** building client sites on Lovable who need their clients to manage
   content independently
 * **Freelance developers** tired of rewriting WordPress REST API integrations on
   every project
 * **Agencies** delivering consistent, client-friendly handovers at scale

#### Works With Any React Frontend

 * Lovable subdomain (e.g. yoursite.lovable.app)
 * Custom domain (e.g. yoursite.com)
 * Next.js, Vite, Create React App — anything React

#### Works With Any WordPress Setup

 * Subdomain (e.g. cms.yoursite.com)
 * Main domain (e.g. yoursite.com)
 * Subfolder (e.g. yoursite.com/cms)
 * Shared hosting, VPS, managed WordPress — all supported

#### Overedge Platform

This plugin works standalone, but connects seamlessly with the **Overedge platform**(
overedge.dev) which provides:

 * Browser-based connection wizard — no terminal, no VS Code
 * Auto-generated React integration files (wordpress.ts, useWordPress.ts, cmsData.
   ts)
 * Dashboard to manage all connected sites
 * Health monitoring across all your client sites
 * Phase 2: Visual customisation — clients control colours, layout, and components
   from wp-admin
 * Phase 2: Shortcode  React props mapping — `[overedge_hero headline="..."]` updates
   your React component automatically

#### REST API Endpoints Added

 * `GET /wp-json/overedge/v1/health` — Plugin health and site status
 * `POST /wp-json/overedge/v1/configure` — Update CORS allowed origin
 * `GET /wp-json/overedge/v1/settings` — Site-wide CMS settings

#### Custom Post Types Registered

 * `overedge_testimonial` — with fields: quote, author_name, author_country, destination,
   avatar
 * `overedge_team_member` — with fields: full_name, job_title, bio, photo, destination_focus,
   linkedin_url
 * `overedge_faqs` — with fields: answer, destination, order

All custom post types are exposed via the WordPress REST API and include ACF field
support.

#### Privacy

This plugin does not collect or transmit any personal data. The optional Overedge
platform connection only stores site URLs and connection status — never content 
or user data.

## التنصيب

#### Automatic Installation (Recommended)

 1. Log in to your WordPress admin dashboard
 2. Go to **Plugins  Add New**
 3. Search for **Overedge Connector**
 4. Click **Install Now**
 5. Click **Activate Plugin**

That’s it. The plugin configures everything automatically on activation.

#### Manual Installation

 1. Download the plugin ZIP from this page
 2. Go to **Plugins  Add New  Upload Plugin**
 3. Upload the ZIP file and click **Install Now**
 4. Click **Activate Plugin**

#### After Activation

 1. Visit **Settings  Permalinks** and click **Save Changes** to flush rewrite rules
 2. Test the health endpoint: `https://yoursite.com/wp-json/overedge/v1/health`
 3. You should see a JSON response with `"status": "ok"`
 4. Connect your React frontend using the Overedge platform at overedge.dev

## الأسئلة المتكررّة

### Does this plugin work without the Overedge platform?

Yes. The plugin works standalone. It registers custom post types, configures the
REST API, and handles CORS. You can connect any React frontend manually using the
REST API endpoints.

The Overedge platform (overedge.dev) automates the connection setup and generates
the React integration files for you — but it is optional.

### Does my React app need to be on a specific hosting platform?

No. Overedge works with any React frontend on any hosting — Lovable, Vercel, Netlify,
custom servers, or static hosting. Both subdomains and custom domains are supported.

### Do I need a custom domain for my WordPress site?

No. The plugin works on any WordPress URL — a subdomain (cms.yoursite.com), a main
domain (yoursite.com), or a subfolder (yoursite.com/cms).

### Does this plugin require Advanced Custom Fields?

ACF field groups are registered programmatically using `acf_add_local_field_group()`.
If ACF (free or Pro) is installed, the field groups appear automatically. If ACF
is not installed, the custom post types still work via the REST API — you just won’t
have the structured ACF fields.

### How does CORS work?

On activation, the plugin allows all origins by default so your React app can connect
during setup. Once you connect via the Overedge platform, the allowed origin is 
updated to your specific React frontend URL only.

You can also set the allowed origin manually via the configure endpoint:
 POST /
wp-json/overedge/v1/configure with header `X-Overedge-Secret: [your secret key]`(
legacy `X-Overco-Secret` is still accepted)

### Where do I find my Overedge secret key?

The secret key is auto-generated on plugin activation and stored as a WordPress 
option. You can retrieve it via WP-CLI: `wp option get overedge_secret_key`

### Is this plugin compatible with caching plugins?

Yes. The REST API endpoints are excluded from page caching by default on most caching
plugins. If you experience issues, add `/wp-json/` to your caching plugin’s exclusion
list.

### Does the plugin work on multisite?

Single site support only in version 1.0. Multisite support is planned for a future
release.

### How do I report a bug or request a feature?

Visit overedge.dev or open an issue at https://github.com/timolumide1/overedge-connector

## المراجعات

لا توجد مراجعات لهذه الإضافة.

## المساهمون والمطوّرون

“Overedge Connector” هو برنامج مفتوح المصدر. وقد ساهم هؤلاء الأشخاص بالأسفل في هذه
الإضافة.

المساهمون

 *   [ timothyolu ](https://profiles.wordpress.org/timothyolu/)

[ترجمة ”Overedge Connector“ إلى لغتك.](https://translate.wordpress.org/projects/wp-plugins/overedge-connector)

### مُهتم بالتطوير؟

[تصفّح الشفرة](https://plugins.trac.wordpress.org/browser/overedge-connector/)، 
تحقق من [مستودع SVN](https://plugins.svn.wordpress.org/overedge-connector/)، أو 
الاشتراك في [سجل التطوير](https://plugins.trac.wordpress.org/log/overedge-connector/)
بواسطة [RSS](https://plugins.trac.wordpress.org/log/overedge-connector/?limit=100&mode=stop_on_copy&format=rss).

## سجل التغييرات

#### 1.3.0

 * Added shortcode parser endpoint
 * GET /wp-json/overedge/v1/shortcodes
 * Supports all [overedge_*] shortcodes
 * Returns structured JSON for React

#### 1.0.1

 * Unique `overco_` prefix for functions, constants, options, and related identifiers(
   WordPress.org guidelines)
 * Prefixed custom post type slugs: `overedge_testimonial`, `overedge_team_member`,`
   overedge_faqs` (≤20 characters for WordPress)
 * Prefixed ACF local field group and field keys
 * REST API namespace `overedge/v1` (configure with `X-Overedge-Secret`)
 * Migrates `overco_*` options to `overedge_*` on activation and removes the old
   keys

#### 1.0.0

 * Initial release
 * Custom post types: testimonials, team_members, faqs
 * ACF field groups for all post types
 * REST API configuration and CORS handling
 * Health endpoint with query var fallback
 * Site-wide options panel
 * Secure configuration endpoint with secret key verification

## ميتا Meta

 *  Version **1.3.0**
 *  Last updated **قبل 4 أسابيع**
 *  Active installations **20+**
 *  WordPress version ** 5.8 أو أعلى **
 *  Tested up to **7.0**
 *  PHP version ** 7.4 أو أعلى **
 *  Language
 * [English (US)](https://wordpress.org/plugins/overedge-connector/)
 * Tags
 * [headless](https://ar.wordpress.org/plugins/tags/headless/)[lovable](https://ar.wordpress.org/plugins/tags/lovable/)
   [react](https://ar.wordpress.org/plugins/tags/react/)[rest-api](https://ar.wordpress.org/plugins/tags/rest-api/)
 *  [عرض متقدم](https://ar.wordpress.org/plugins/overedge-connector/advanced/)

## التقييم

لم يتم تقديم أي مراجعات بعد.

[Your review](https://wordpress.org/support/plugin/overedge-connector/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/overedge-connector/reviews/)

## المساهمون

 *   [ timothyolu ](https://profiles.wordpress.org/timothyolu/)

## الدعم

لديك شيء لتقوله؟ بحاجة الى مساعدة؟

 [عرض منتدى الدعم](https://wordpress.org/support/plugin/overedge-connector/)