使用Angular登录wordpress的最佳方式

时间:2016-12-18 03:04:29

标签: angularjs wordpress authentication

使用Angular,我试图从前面发布Wordpress CPT。

当我使用$http.post登录RestApi时,它正常工作, 通过拦截器包含x-wp-nonce

$httpProvider.interceptors.push([function() {
    return {
        request: function(config) { 
            config.headers = config.headers || {};
            config.headers['X-WP-Nonce'] = appInfo.nonce;
            return config
        }
    };
}]);

但当我退出时,它当然不起作用 在没有用户看到的情况下登录最简单的方法是什么?

我希望任何非wp用户能够从前面发布草稿CPT,比如说使用名为visitor的wp用户。

谢谢。

0 个答案:

没有答案