在我的主题功能中。我放的php文件:
add_action(\'wp_footer\', \'method\');
function method()
{
echo "this is being called";
die();
}
我的wordpress页脚。php文件如下所示:
<?php wp_footer(); ?>
</body>
</html>
为什么没有调用我的add\\u操作挂钩?
如果需要,我可以提供其他代码或信息。
编辑:
而不是
die()
如果我回显脚本,它将不会出现在页脚中
add_action(\'wp_footer\', \'method\');
function method()
{
echo "<script>...</script>";
}