您可以在希望插件交互的适当位置,在核心插件的代码中实现过滤器和操作,方法是:
do_action( \'my_action\');
apply_filters(\'my_filter\', $value, $variable_to_pass, $another_variable_to_pass);
然后,您可以将插件作为单独的插件,并通过调用以下挂钩与核心交互:
add_action(\'my_action\', \'action_handle_function\');
add_filter(\'my_filter\', \'filter_handle_function\');
这就是插件与WordPress核心交互的方式,所以您只需遵循这些步骤。