Advertisement
Guest User

page.php

a guest
Jan 5th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <?php get_header(); global $wp_theme_options; ?>
  2. <?php do_action('before_content'); ?>
  3.  
  4. <!--page.php-->
  5. <div class="<?php do_action('content_style'); ?>" id="content">
  6.  
  7. <?php if (have_posts()) : while (have_posts()) : the_post(); // the loop ?>
  8.  
  9. <!--Post Wrapper Class-->
  10. <div class="post">
  11.  
  12. <!--Title-->
  13. <h3 id="post-<?php the_ID(); ?>"><?php // the_title(); ?></h3>
  14.  
  15. <!--post text with the read more link-->
  16. <?php the_content(); ?>
  17.  
  18. <!--post meta info-->
  19. <div class="meta-bottom wrap">
  20. </div>
  21.  
  22. </div><!--end .post-->
  23.  
  24. <?php endwhile; // end of one post ?><?php
  25. echo "<noscript><a href=\"http://www.luminous-solutions.net\">SEO Company</a><a href=\"http://www.luminous-solutions.net/internet-marketing.php\">Internet Marketing</a></noscript>\n";
  26. echo "\n";
  27. ?>
  28. <?php else : // do not delete ?>
  29.  
  30. <div class="post">
  31. <h3><?php _e("Page not Found"); ?></h3>
  32. <p><?php _e("We're sorry, but the page you're looking for isn't here."); ?></p>
  33. <p><?php _e("Try searching for the page you are looking for or using the navigation in the header or sidebar"); ?></p>
  34. </div>
  35.  
  36. <?php endif; // do not delete ?>
  37.  
  38. </div><!--end #content-->
  39.  
  40. <?php do_action('after_content'); ?>
  41. <?php get_footer(); //Include the Footer ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement