Blog

  • <div id="meu-json"></div>
    <script>
    fetch('/wp-content/uploads/seuarquivo.json')
      .then(response => response.json())
      .then(data => {
        document.getElementById('meu-json').innerText = JSON.stringify(data, null, 2);
      })
      .catch(error => {
        document.getElementById('meu-json').innerText = 'Erro ao carregar JSON';
      });
    </script>
    

    Hello world!

    Welcome to WordPress. This is your first post. Edit or delete it, then start writing!