You may be able to discover plugin by changing core source. After test, look at your error log.
qa-include/qa-base.php(L559)
Before:
else
return $qa_overrides[$function];
After:
else {
error_log('overrided function = '.print_r($function,true), 0);
error_log('override function = '.print_r($qa_overrides[$function],true), 0);
return $qa_overrides[$function];
}
Example of error log:
- [99:99:99 9999] [error] [client xxx.xxx.xxx.xxx] override function = qa_path_override_1_in_qa_np_overrides_php
- [99:99:99 9999] [error] [client xxx.xxx.xxx.xxx] overrided function = qa_path
qa_path_override_1_in_qa_np_overrides_php
Red: Source file name of plugin that performed overriding (Some letters are converted into underscore)