PhoenyxDown

CHCoC Public

Sep 1st, 2011
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. <?php if (have_posts()) : while (have_posts()) : the_post(); // the loop ?>
  2.        
  3.     <!--post title as a link-->
  4.     <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
  5.  
  6. <?php else : // do not delete ?>
  7.  
  8.     <h3>Page Not Found</h3>
  9.     <p>We're sorry, but the page you are looking for isn't here.</p>
  10.     <p>Try searching for the page you are looking for or using the navigation in the header or sidebar</p>
  11.  
  12.     <?php endif; // do not delete ?>
Advertisement
Add Comment
Please, Sign In to add comment