add_filter('wp_list_pages_excludes', 'gr_wp_list_pages_excludes');
function gr_wp_list_pages_excludes($exclude_array) {
$id_array=$array('22');
$exclude_array=array_merge($id_array, $exclude_array);
return $exclude_array;
}
我是wordpress的新手。上面的代碼工作正常。但我需要傳遞額外的參數,例如$ mu_cust_arg到函數gr_wp_list_pages_excludes。我如何通過apply_filters或其他方法來使用它? 任何幫助表示讚賞。如何將其他參數傳遞給wordpress過濾器?
在此先感謝。
有一個偉大的答案,這在在:http://wordpress.stackexchange.com/a/45920/4994 – ptim 2013-11-20 04:19:00