我想输出所有apply\\u过滤器和do\\u操作,以向用户提供它们的概述。
如果我使用代码
add_filter( \'wpErpOs_testFilter\', \'wpErpOs_testFilter_callback\', 10, 1 );
function wpErpOs_testFilter_callback( $testVar ) {
$testVar[] = "GM";
return $testVar;
}
$testVar = array("VW", "Audi");
$testVar = apply_filters(\'wpErpOs_testFilter\', $testVar);
然后挂钩显示在
global $wp_filter;.
如果add\\u filter未调用apply\\u filters,则它不会出现在
global $wp_filter;;
如何输出所有apply\\u筛选器和do\\u操作,即使是未调用的筛选器和do\\u操作?