The requirement is that the user will post a blog on wordpress panel and it will post on wordpress blog section and on a static website(example) too. I am using pure java script and bootstrap.
The requirement is that the user will post a blog on wordpress panel and it will post on wordpress blog section and on a static website(example) too. I am using pure java script and bootstrap.
Share Improve this question edited Mar 10, 2020 at 23:30 fuxia♦ 107k39 gold badges255 silver badges459 bronze badges asked Feb 14, 2020 at 6:56 Umair ArshadUmair Arshad 11 Answer
Reset to default 0I think that you should have a look at the WordPress API. https://developer.wordpress/rest-api/reference/posts/#example-request
It allows you to fetch all posts with Javascript or any other language.
e.g.
jQuery.ajax({
type: 'GET',
url: "http://example/wp-json/wp/v2/posts",
success: function(data) {
var obj = JSON.stringify(data);
var result = jQuery.parseJSON(obj);
console.log(result);
}
});