Advertisement
GochiSiyan

script on specific page

Mar 22nd, 2021
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. add_action('wp_head',function(){
  2. $page_id=10;
  3. if (is_page($page_id)){
  4. add_action('wp_footer',function (){
  5. ?>
  6. <script>
  7. (function(){
  8. setTimeout(function(){
  9. window.dispatchEvent(new Event('resize'))
  10. },1000)
  11. })();
  12. </script>
  13. <?php
  14. },999999);
  15. }
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement