与全局关键字一起使用的正确语法。要访问WordPress中的全局变量,首先需要使用global$variable全球化变量;
写入函数内部。php组件:
function myfunction(){
global $get_variable;
$get_value = $db->query("SELECT * FROM mytable")->fetch();
$get_variable = $get_value;
}
add_action( \'after_theme_setup\', \'myfunction\' );
在函数中,您现在可以在任何位置访问。但是,在此范围之外,需要将其重新声明为全局范围变量。例如,使用内单。php文件,它将作为
global $get_variable;
echo $get_variable;