如何根据经验添加过滤器:
如果筛选器有多个var,则必须添加priority & num_args 至过滤器
# Example:
// RIGHT
add_filter( \'the_title\', \'your_callback_fn\', 20, 2 );
// WRONG
add_filter( \'the_title\', \'your_callback_fn\' );
如何在回调中返回另一条经验法则(可能并不总是正确的,但到目前为止我还没有找到相反的方法):
始终返回第一个参数
// Example
function your_callback_fn( $var_A, $var_B, $var_C )
{
// do stuff - the other vars (B-C) are here for your help
// ! important: return the 1st var
return $var_A;
}
add_action( \'the_funk\', \'your_callback_fn\', 10, 3 );