我正在编写一个简单的插件,希望在函数中的数组中进行一些设置。php文件。
I\'m thinking of adding this in the theme functions.php
$test = array(\'haha\' => \'hehe\');
my_function( $test);
然而,我需要通过插件中的操作和过滤器来获取它。例如,我有这样一个函数:
add_action(\'wp_head\', \'tryit\');
function tryit() {
print_r($test);
}
我需要它把$测试数组放在那里。全局变量不正确。是否可以使用do\\u action、add\\u action、do\\u filter、apply filter?实例