// IQ REST API Bridge add_action('rest_api_init', function() { register_rest_route('IQ/v1', '/config', array( 'methods' => 'GET', 'callback' => 'IQ_get_config', 'permission_callback' => '__return_true', // Public access )); }); function IQ_get_config() { // Find the page titled 'IQ Config' $page = get_page_by_title('IQ Config', OBJECT, 'page'); if (!$page) { return new WP_Error('not_found', 'IQ Config page not found', array('status' => 404)); } // Get the content. We use get_post_meta or get_the_content depending on how you stored it. // Since we pasted it into the content editor, we use get_post_content. $content = get_post($page->ID)->post_content; // Strip any shortcodes or formatting that WP might add $content = strip_tags($content); $content = trim($content); // Try to decode it $decoded = json_decode($content, true); if (json_last_error() !== JSON_ERROR_NONE) { return new WP_Error('invalid_json', 'Invalid JSON in IQ Config page: ' . json_last_error_msg(), array('status' => 400)); } return $decoded; } Northeast – Page 94 – Extroverting

Tag: Northeast