0

我有两个动作:

add_action('init', 'activate');
add_action('wp_footer', 'code');

activate需要设置 cookie 并在一个名为的变量中生成一些 html 代码$html

code然后只需将该代码wp_footer与其他 html 代码一起输出即可。我注意到即使首先调用了 init 并且变量应该用正确的代码填充,它$html也是空的。code调用global $html没有帮助,变量仍然是空的。如何更改它,以便在被调用且不为空$html时具有正确的内容?code

4

1 回答 1

0

全局定义变量 $html 对我有用,例如global $html;

于 2013-03-08T18:53:19.850 回答