9
필터 및 동작 함수에 매개 변수 전달
add_filter또는 의 함수에 내 매개 변수를 전달하는 방법 add_action입니다. 예를 들어 다음 코드를 살펴보십시오. function my_content($content, $my_param) { do something... using $my_param here ... return $content; } add_filter('the_content', 'my_content', 10, 1); 내 매개 변수를 전달할 수 있습니까? 같은 : add_filter('the_content', 'my_content($my_param)', 10, 1) 또는 add_filter('the_content', 'my_content', 10, 1, $my_param)