WordPress使用Node.js 重写的例子
文章来为各位介绍一个简单的WordPress使用Node.js 重写的例子,希望这个例子可以帮助到各位朋友.
要 WordPress 4.3 完全拒绝 PHP 还是不可能的,但是开发者计划重写一些基本的核心类,包括 WP_Query 、WP_Erro、和 WP_Object_Cache.
值得注意的是,发给 WordPress 数据库的请求不仅可以在服务器端执行,也可以在客户端用 JSON REST API 执行,此功能在 4.3 版本上实现,代码可能是这样:
- var query = new wp.Query ();
- query.setQuery ({
- post_type: 'post',
- post_status: 'publish',
- posts_per_page: 5
- }); //phpfensi.com
- _.each (query.getPosts (), function (post) {
- console.log (post.title);
- console.log (post.content);
- console.log (post.author);
- });