<?php // Abrufen der Plattform-Information $response = wp_remote_get( ‘https://httpbin.org/get’ ); // Wenn die Anfrage erfolgreich war, wird die Plattform-Information angezeigt if ( is_wp_error( $response ) ) { echo ‘Fehler beim Abrufen der Plattform-Information.’; } else { $body = wp_remote_retrieve_body( $response ); $plattform = json_decode( $body, true )[‘platform’]; ?> <p>Plattform: <?php echo esc_html( $plattform ); ?></p> <?php } ?>