如何在WordPress中为函数设置一段代码然后调用该函数...这是我的第一个猜测,但当然这不起作用...
有人可以建议我如何让它工作,这样我就可以避免多余的代码。另外,如果我在函数中定义代码,我可以在不同的.php文件中调用它,还是只能在该文件中调用它?
<?php
// This code will never change.
function $test {
echo('test this will be a long string and repeated many times.')
}
?>
<?php
echo $test;
?>
答案 0 :(得分:2)
PHP函数名称(与变量不同)声明没有美元符号:
function test (
要调用函数,请使用以下格式:
test();
您的代码示例如下所示:
<?php
// This code will never change.
function test {
echo('test this will be a long string and repeated many times.')
}
?>
<?php
test();
?>