WP-APIでは、デフォルトではカスタムフィールドは出力されません。 なぜかというとサードパーティのプラグインがいつの間にかセキュリティ的に重要な情報を出力している可能性があるからなんですよね。 ただし、カスタムフィールドを出力するプラグインを作るのはそれほど難しくありません。 <?php /** * Plugin Name: Add Meta to REST-API * Author: Takayuki Miyauchi * Description: Example plugin that adds post meta to rest-api. */ add_action( 'rest_api_init', function() { register_rest_field( 'post', // post type 'post_meta', // rest-apiに追加するキー arra