我在一个 wordpress 主题中遇到以下情况,我想在一个名为 navigation.php 的文件中对其进行修改
$array_test = array (1,2,3,4);
function func1()
{
global $array_test;
echo "test"; // to ensure that the function has been called
echo $array_test[2]; // this writes nothing, though the function is being called
}
在名为 header.php 的文件中,该函数func1
被调用,仍然$array_test[2]
无法访问的值,
你有什么想法?
编辑:我怀疑这是 wordpress 或主题的问题,但我不确定主题是免费的 health_care_wp_theme