Advertisement
sierre

Email Sign-up Form - Code Snippet - Footer

Apr 7th, 2022 (edited)
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php
  2. // Ticket #18194
  3. add_action('wp_footer', 'email_signup_box');
  4. function email_signup_box(){
  5.     if ( ! is_home() && ! is_front_page() ) : ?>
  6.         <script>           
  7.             jQuery(function($) {
  8.                 $( '#footer' ).prepend('<div id="footer-signupbox"><div id="fd-form-61899c973a0e5bcf6f54121c"></div></div>');
  9.             });
  10.            
  11.             window.fd('form', {
  12.                 formId: '61899c973a0e5bcf6f54121c',
  13.                 containerEl: '#fd-form-61899c973a0e5bcf6f54121c'
  14.             });
  15.         </script>
  16.     <?php endif;
  17. };
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement