Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. protected function _createWpHookReplacement($wpHook)
  2. {
  3. return ($wpHook instanceof WpHookReplacer)
  4. ? $wpHook
  5. : new WpHookReplacer($wpHook);
  6. }
  7.  
  8. public function __construct(WP_Hook $wpHook)
  9. {
  10. $this->wpHook = $wpHook;
  11. $this->callbacks = &$wpHook->callbacks;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement