使用 do_action 函数可以触发一个钩子函数。do_action 函数的参数与要触发的钩子函数的参数相同。 例如,触发save_post钩子函数的代码如下: do_action( 'save_post', $post_ID, $post ); 这里,$post_ID 和 $post 是传递给钩子函数的参数。