Mô tả
CCZGR AI exposes three unified fields — meta_title, meta_description and focus_keyword — on the standard WordPress REST API for posts, pages and every custom post type that supports REST. The values are stored in whichever supported SEO plugin is active, so external tools and automations can read and write SEO metadata without knowing each SEO plugin’s internal meta keys.
Supported SEO plugins:
- Rank Math (used when both are active)
- Yoast SEO
Only users who can edit a post may change its SEO metadata, and the focus keyword is hidden from users who cannot edit the post.
The plugin also provides an optional administrator-only endpoint to start an UpdraftPlus database backup on demand (only when UpdraftPlus is active) — handy right before a bulk metadata import.
Cài đặt
- Upload the
cczgr-aifolder to/wp-content/plugins/, or install the plugin through the Plugins screen in WordPress. - Activate the plugin through the Plugins screen.
- Make sure Rank Math or Yoast SEO is active.
- Read and write the
meta_title,meta_descriptionandfocus_keywordfields through the REST API for any post, page or custom post type, e.g.POST /wp-json/wp/v2/posts/<id>with{ "meta_title": "…", "meta_description": "…", "focus_keyword": "…" }.
Hỏi đáp
-
Which SEO plugins are supported?
-
Rank Math and Yoast SEO. If both are active, Rank Math is used.
-
Do I need to configure anything?
-
No. The plugin detects the active SEO plugin automatically and stores no settings of its own.
-
What does the backup endpoint do?
-
When UpdraftPlus is active, an administrator can send
POST /wp-json/cczgr-ai/updraft-backupto start an UpdraftPlus database backup. The backup runs in the background.
Đánh giá
Không có đánh giá nào cho plugin này.
Người đóng góp & Lập trình viên
“CCZGR AI” là mã nguồn mở. Những người sau đã đóng góp vào plugin này.
Những người đóng góp“CCZGR AI” đã được dịch qua 1 ngôn ngữ. Cảm ơn những người tham gia dịch vì đóng góp của họ.
Dịch “CCZGR AI” sang ngôn ngữ của bạn.
Muốn tham gia phát triển?
Duyệt code, check out SVN repository, hoặc theo dõi nhật ký phát triển qua RSS.
Nhật ký thay đổi
2.0.0
- Rewritten as a lightweight “easy version” focused solely on reading and writing SEO metadata (title, description, focus keyword) via the REST API for posts, pages and custom post types.
- Removed the Composer dependencies, WebP conversion and the configuration endpoint.
- Added an explicit capability check on metadata writes and hardened the REST callbacks.
- Retained the on-demand UpdraftPlus database backup endpoint.
1.8
- Previous feature-complete release.