0

我正在创建 Facebook 应用程序,但问题是我想使用 word-press 的 the_permalink 作为重定向 url,但它无法显示重定向 url=the_permalink(),这是我的代码

define('REDIRECT_URI',"the_permalink()");

我是 php 新手,所以我认为我缺乏一些基本的东西。

4

2 回答 2

0

我不知道WordPress。但我认为你必须从 *the_permalink()* 中删除引号。

于 2012-05-20T06:01:10.317 回答
0

首先删除引号:

define('REDIRECT_URI',the_permalink());

the_permalink()- 返回当前页面 url 的函数 - http://codex.wordpress.org/Function_Reference/the_permalink

于 2012-05-20T06:44:34.697 回答