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.
好的。这是我想要得到的:
我即将创建一个非常简单的日志插件。每次触发动作或过滤器时 - 我需要将其记录到文件中。这个想法是,我们将能够准确地看到每次页面加载时执行了哪些操作和过滤器(以及它们运行的功能)。这包括它们运行的顺序。
谢谢!
正如 brasofilo 提到的,有一个“全部”钩子,您可以像这样使用它:
add_action('all', 'log_hook_function'); function log_hook_function( $parameters ) { // Dump out $parameters to see what you're working with }