aioseoIndexNow()->options->all() ]; return $data; } /** * Generates an API key to use with IndexNow. * * @since 1.0.0 * * @return string The API key. */ public function generateApiKey() { $newApiKey = wp_generate_uuid4(); $newApiKey = preg_replace( '[-]', '', (string) $newApiKey ); return $newApiKey; } }