Advertisement
Guest User

single php

a guest
Nov 8th, 2011
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div style="clear:both"></div>
  3.  
  4. <?php if (function_exists('pixopoint_menu')) {pixopoint_menu();}; ?>
  5.  
  6.  
  7. <div id="content">
  8.  
  9. <div id="contentleft">
  10.  
  11. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  12. <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
  13. <p><?php the_time('F j, Y'); ?></p>
  14. <?php do_action( 'wp_plus_one_button', 'http://google.com', 'tall', 'padding:10px;border: 1px solid black;'); ?>
  15. <?php the_content(__('Read more'));?>
  16.  
  17. <div class="postmeta">
  18. <p>Posted by <?php the_author(); ?> | Filed Under <?php the_category(', ') ?> | <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>&nbsp;<?php edit_post_link('(Edit)', '', ''); ?></p>
  19. </div>
  20.  
  21. <?php endwhile; else: ?>
  22.  
  23. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
  24. <p><?php posts_nav_link(' &#8212; ', __('&laquo; Previous Page'), __('Next Page &raquo;')); ?></p>
  25.  
  26. </div>
  27.  
  28. <?php include(TEMPLATEPATH."/sidebar_right_post.php");?>
  29.  
  30. </div>
  31.  
  32. <!-- The main column ends -->
  33.  
  34. <?php get_footer(); ?>
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement