How do I put a word-press blog into my static site without installing wordpress on server?

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.com) too. I am using pure java script and bootstrap.

Topic static-website plugins Wordpress javascript

Category Web


I think that you should have a look at the WordPress API. https://developer.wordpress.org/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.com/wp-json/wp/v2/posts",
    success: function(data) {
        var obj = JSON.stringify(data);
        var result = jQuery.parseJSON(obj);
        console.log(result);
    }
});

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.