我正在创建 Facebook 应用程序,但问题是我想使用 word-press 的 the_permalink 作为重定向 url,但它无法显示重定向 url=the_permalink(),这是我的代码
define('REDIRECT_URI',"the_permalink()");
我是 php 新手,所以我认为我缺乏一些基本的东西。
我不知道WordPress。但我认为你必须从 *the_permalink()* 中删除引号。
首先删除引号:
define('REDIRECT_URI',the_permalink());
the_permalink()
- 返回当前页面 url 的函数 - http://codex.wordpress.org/Function_Reference/the_permalink