Advertisement
SRD75

template-frameset.php

May 4th, 2015
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.80 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Frame Set
  4. */
  5. ?>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <title><?php wp_title(); ?></title>
  11. <?php wp_head(); ?>
  12. <link href="<?php echo get_stylesheet_directory_uri(); ?>/iframefooter.css" type="text/css" rel="stylesheet" />
  13. </head>
  14. <body>
  15. <iframe class="external" height="90%" width="100%" src="<?php echo get_post_meta($post->ID, 'frameURL', true); ?>"></iframe>
  16. <div id="iframefooter-container">
  17.   <div id="iframefooter">
  18.     <?php while ( have_posts() ) : the_post(); ?>
  19.     <?php the_content(); ?>
  20.     <?php endwhile; ?> 
  21.   </div>
  22. </div>
  23. <?php wp_footer(); ?>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement