Advertisement
Guest User

Untitled

a guest
Oct 1st, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <?php /* Template Name: Full Width Page */ ?> <?php get_header(); ?>
  2. <div id="headgal"> <div id="content" style="width: 100% !important;">
  3. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  4. <div class="post" style="padding: 13px 0 !important;">
  5. <h2> <?php the_title(); ?></h2>
  6. <div class="entry" style="width: 980px !important;z-index:155">
  7. <?php the_content(); ?>
  8. </div>
  9. <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  10. <div class="ptags"><?php the_tags('Tags: ', ', ', ''); ?></div>
  11. </div>
  12. <?php endwhile; else: ?>
  13. <h2>Not Found</h2>
  14. <p>Sorry, but you are looking for something that isn't here.</p>
  15. <?php endif; ?>
  16. </div>
  17. </div>
  18. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement