我写了一个安全功能。
我想在所有由wordpress后端创建的页面中调用此函数。
(Does not want want to called by all php files)
。
是否有挂钩?
答案 0 :(得分:0)
你可以像这样使用php文件(如header.php或functions.php)
if(is_page())
{
// code to execute on all pages
}
答案 1 :(得分:0)
你可以将它绑定到'wp_head'钩子。
http://codex.wordpress.org/Plugin_API/Action_Reference/wp_head