Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个 wordpress 插件,我想<body>在源代码的标签之后插入一个函数。
<body>
我的功能如下所示:
function skew() { ?> <? } add_action ('hook_name', 'skew');
我应该使用什么钩子让这个函数在 body 标记之后运行?或者有没有其他更简单的方法可以在打开body标签后让它运行?谢谢。
使用 add_action 和 do_action 函数如下:
do_action('after_body'); add_action('after_body', 'skew');