HEX
Server: LiteSpeed
System: Linux cde2.duelhost.dk 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
User: dtptviut (1121)
PHP: 8.0.30
Disabled: exec,system,passthru,shell_exec,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/dtptviut/domains/edn.dk/private_html/wp-content/plugins/yoast-rest-meta/readme.txt
=== Yoast REST Meta Enabler ===
Contributors: chatgpt
Requires at least: 5.0
Tested up to: 6.6
Requires PHP: 7.4
Stable tag: 1.0.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Enables updating Yoast SEO meta title and meta description via the WordPress REST API for posts and pages.

== Description ==

WordPress REST API only allows writing to post meta keys that are registered with `show_in_rest => true`.
Yoast SEO does not expose `_yoast_wpseo_title` and `_yoast_wpseo_metadesc` for writing by default.
This plugin registers those keys for posts and pages so you can set them via:
`POST /wp-json/wp/v2/posts/<id>` (or pages) with a `meta` object.

== Usage ==

Example request:

POST /wp-json/wp/v2/posts/123
Content-Type: application/json
Authorization: Basic <base64(user:application_password)>

{
  "meta": {
    "_yoast_wpseo_title": "My SEO Title",
    "_yoast_wpseo_metadesc": "My SEO Description"
  }
}

== Filters ==
`yoast_rest_meta_enabler_post_types` — Filter the list of post types (default: ['post','page']). Return an array of post type slugs.