Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. window.wp.hooks.addFilter(
  2. 'editor.PostFeaturedImage',
  3. 'myplugin/myhook',
  4. function( original ) {
  5. console.log (original);
  6. return function() {
  7. return (
  8. window.wp.element.createElement(
  9. 'div',
  10. { key: 'outer' + Math.random() },
  11. [
  12. 'Prepend above',
  13. _.extend( original( {} ), { key: 'my-key' } ),
  14. 'Append below'
  15. ]
  16. )
  17. );
  18. }
  19. }
  20. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement