0
下面是這種情況:如何將參數傳遞給apply_filters?
if(apply_filters('example_filter', false, $type)) {
// do something
}
我要讓$type
提供// do something
塊內或從callback_function
通過。
$type = 'select';
function callback_function($bool, $type) {
return true;
}
add_filter('example_filter', 'callback_function', 10, 2);
如何傳遞從內部apply_filters
範圍callback_function
的arguement?