Advertisement
anthonyluth

Gravity Forms - Modal Page Template

Mar 12th, 2011
768
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.16 KB | None | 0 0
  1. <?php
  2.  /*
  3.  Template Name: Gravity Forms - Fancybox Modal
  4.  */
  5. ?>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  7.   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  9. <head>
  10.   <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  11.   <meta name="MSSmartTagsPreventParsing" content="true" />
  12.   <meta http-equiv="Imagetoolbar" content="No" />
  13.   <title>My Form Title</title>
  14.   <style type="text/css">
  15.     body {font-size:13px;}
  16.   </style>
  17.   <link rel='stylesheet' id='gforms_css-css'  href='<?php bloginfo('url'); ?>/wp-content/plugins/gravityforms/css/forms.css?ver=3.0.1' type='text/css' media='all' />
  18.   <script type='text/javascript' src='<?php bloginfo('stylesheet_directory'); ?>/includes/js/jquery-142.js?ver=1.4.1'></script>
  19.   <script type='text/javascript' src='<?php bloginfo('url'); ?>/wp-content/plugins/gravityforms/js/conditional_logic.js?ver=1.3.13.1'></script>
  20.   </head>
  21. <body>
  22.   <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  23.   <?php the_content('read more'); ?>
  24.   <?php endwhile; endif; ?>
  25.   <?php wp_footer(); ?>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement