WordPress hook directly after body tag

后端 未结 9 931
野性不改
野性不改 2020-12-14 16:39

I\'m having problems finding the right hook to use for my plugin. I\'m trying to add a message to the top of each page by having my plugin add a function. What\'s the best h

9条回答
  •  一向
    一向 (楼主)
    2020-12-14 16:51

    WordPress has now addressed this by adding the wp_body_open hook in version 5.2. You can now hook or inject into HTML body by doing:

    
    

    Putting this in your functions.php file in your theme might be best for most basic users.

提交回复
热议问题