Advertisement
alchymyth

no-sidebar-page.php template for VectorLover

Aug 25th, 2012
123
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. Template Name: No Sidebar
  3. */
  4. ?>
  5. <?php get_header(); ?>
  6.  
  7.    
  8.  
  9.         <div id="main" class="no-sidebar">
  10.  
  11.  
  12.  
  13. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  14.  
  15.                
  16.  
  17. <h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  18.  
  19.                    
  20.  
  21.             <p class="post-info">Posted by <?php the_author(); ?></p>
  22.  
  23.                
  24.  
  25.             <?php the_content('Read the rest of this entry...'); ?>
  26.  
  27.  
  28.  
  29. <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  30.  
  31.                
  32.  
  33.             <p class="post-footer">
  34.  
  35.             <a href="<?php the_permalink(); ?>" class="readmore">Permalink</a> |
  36.  
  37.             <a href="<?php comments_link(); ?>" class="comments">Comments (<?php comments_number('0','1','%'); ?>)</a> |               
  38.  
  39.             <span class="date"><?php the_time('M j, Y'); ?></span>
  40.  
  41.            
  42.  
  43.             </p>
  44.  
  45.  
  46.  
  47. <?php comments_template(); ?>
  48.  
  49.  
  50.  
  51. <?php endwhile; else : ?>
  52.  
  53.  
  54.  
  55.         <h2>Not Found</h2>
  56.  
  57.         <p>Sorry, but you are looking for something that isn't here.</p>
  58.  
  59.  
  60.  
  61.     <?php endif; ?>
  62.  
  63.  
  64.  
  65.         <!-- main ends --> 
  66.  
  67.         </div>
  68.  
  69.  
  70. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement