Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active April 15, 2024 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vanaf1979/3874db6b4503b4cce87a69bc409f21f6 to your computer and use it in GitHub Desktop.
Save vanaf1979/3874db6b4503b4cce87a69bc409f21f6 to your computer and use it in GitHub Desktop.
Fixing and Parsing WordPress Rest Api content in React. https://since1979.dev/fixing-and-parsing-wordpress-rest-api-content-in-react/
import React, { useState, useEffect } from "react";
import Axios from "axios";
import WpApiContent from "./WpApiContent.js";
export default function App() {
// ...
return (
<div className="App">
{post && (
<div>
<h1>{post.title.rendered}</h1>
<WpApiContent content={post.content.rendered} />
</div>
)}
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment