Basic post navigation with React and the Wp Rest Api https://since1979.dev/basic-post-navigation-with-react-and-the-wp-rest-api/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useEffect } from "react"; | |
import Axios from "axios"; | |
export default function App() { | |
// ... | |
return ( | |
<div className="posts-app__wrapper"> | |
<h1>Navigate Wp Rest Api Posts</h1> | |
<div className="posts-app__post-list"> | |
{posts && posts.length && posts.map((post, index) => { | |
return ( | |
<div key={post.id} className="posts-app__post"> | |
<h2>{post.title.rendered}</h2> | |
<div dangerouslySetInnerHTML={{ __html: post.excerpt.rendered }} /> | |
<a href={post.link} target="_blank">Read post</a> | |
</div> | |
); | |
})} | |
</div> | |
</div> | |
); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment