Advertisement
Guest User

Gravity Forms Embedding

a guest
May 10th, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2. $query = new WP_Query( 'pagename=bestellen' );
  3. while ( $query->have_posts() ) : $query->the_post();
  4.     the_content();
  5. endwhile; ?>
  6.  
  7. <?php while ($query->have_posts()) : $query->the_post();
  8.     the_content();
  9. <?php endwhile; ?>
  10.  
  11. <?php
  12. echo do_shortcode('[gravityform id="1" name="Bestellen" title="false" description="false" ajax="true"]');
  13. ?>
  14.  
  15. <?php
  16. gravity_form(1, false, false, false, '', true);
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement