-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.25 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Display Post Details</title>
</head>
<body>
<div id="postTitle"></div>
<div id="postTags"></div>
<div id="postContent"></div>
<script>
// Replace 'your-site-url' with the base URL of your WordPress site
const apiUrl = 'https://your-site-url/wp-json/wp/v2/posts/';
// Replace 'your-post-id' with the ID of the post you want to fetch
const postId = 'your-post-id';
// Fetch the post data from the WordPress REST API
fetch(`${apiUrl}${postId}`)
.then(response => response.json())
.then(data => {
// Extract the post title, tags, and content from the API response
const postTitle = data.title.rendered;
const postTags = data.tags.map(tag => tag.name).join(', ');
const postContent = data.content.rendered;
// Display the post title, tags, and content in their respective divs
document.getElementById('postTitle').innerHTML = `<h1>${postTitle}</h1>`;
document.getElementById('postTags').innerHTML = `<p><strong>Tags:</strong> ${postTags}</p>`;
document.getElementById('postContent').innerHTML = postContent;
})
.catch(error => {
console.error('Error fetching post data:', error);
});
</script>
</body>
</html>