最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin5浏览0评论

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 1
Add a comment  | 

1 Answer 1

Reset to default 0

I 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);
    }
});
发布评论

评论列表(0)

  1. 暂无评论