WebPro Care Latest Questions

heathaiexpert
  • 1

How to insert javascript inside popups

  • 1

By default, WordPress does not let you add code directly in your posts (or popups).

How to insert javascript inside popups

Related Questions

Leave an answer

You must login to add an answer.

  1. This answer was edited.

    Basically paste this snippet and replace

    <!– paste your html and javascript here –> with the code you want to insert ( html + js only ! ).

    // use shortcode [wpp_insert]
    
    add_shortcode( 'wpp_insert', 'wpp_insert_code' );
    
    function wpp_insert_code() 
    { ob_start(); ?> 
      <!-- paste your html and javascript here --> 
      <?php $html = ob_get_clean(); 
      return $html; 
    }