Front end inline editing?

时间:2015-12-22 作者:user304165

我想知道是否可以允许我的用户在内联编辑器中从前端创建帖子,类似于在媒体上创建内容。com?我知道有很多内联编辑的选项,但据我所知,最终用户从前端发布的选项并不多。

目前,我正在使用Gravity表单,它允许我的用户从前端创建帖子,但它是通过表单而不是内联的。有没有办法在提交某种内联表单后创建帖子?我有点迷路了,如果能帮上忙,我将不胜感激。

1 个回复
SO网友:jgraup

使用WP JSON REST API 结合jQuery.ajax(). 它与custom endpoints. 一定要使用nonces.

<?php
add_action( \'rest_api_init\', function () {
    register_rest_route( \'myplugin/v1\', \'/author/(?P<id>\\d+)\', array(
        \'methods\' => \'GET\',
        \'callback\' => \'my_awesome_func\',
    ) );
} );