자식 테마를 사용하여 우아한 테마 테마에 대한 테마 작업을 제거하려고합니다. 이것은 부모 테마 functions.php의 어디에서나 add_action 코드 후 작업을 제거 할 때 작동합니다. 그러나 자식 테마 functions.php에서 추가하면 작동하지 않습니다.
remove_action ('after_setup_theme', 'et_pb_setup_theme' , 10);
제거 조치는 추가 조치와 우선 순위가 10입니다. 작동하지 않습니까?
add_action( 'after_setup_theme', 'et_pb_setup_theme' ); //parent theme add_action
function etn(){ if(has_action('after_setup_theme', 'et_pb_setup_theme')){ remove_action ('after_setup_theme', 'et_pb_setup_theme' ); } } add_action ('after_setup_theme', 'etn', 9);