Advertisement
Guest User

single.php

a guest
Aug 16th, 2010
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.30 KB | None | 0 0
  1. <?php if(is_single()){ ?>
  2.     <div class="contpost">
  3.    
  4.       <div class="tweet-bt">
  5.       <a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="portalup" target="_blank">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
  6.       </div><!-- /tweet-bt -->
  7.    
  8.       <div class="conteudo"><?php the_content(); ?><br /></div>
  9.          
  10.       <span id="infospost">Tags:</span>
  11.       <span class="tags"><?php the_tags(' ', ' , ' ); ?></span><br /><br />
  12.  
  13.       <span id="infospost">Veja tamb&eacute;m os links abaixo:</span>
  14.       <?php
  15.          $rand_posts = get_posts('numberposts=5&orderby=rand');
  16.          foreach( $rand_posts as $post ) :
  17.       ?>
  18.     <li class="randompost">- <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  19.  <?php endforeach; ?><br />
  20.    
  21.         <div class="linkspost">
  22.             <span class="link">&laquo; <a href="<?php echo home_url( '/' ); ?>" rel="home">P&aacute;gina Inicial</a></span> |
  23.             <span class="linkbroken"><a href="/?page_id=97">Reportar Link Quebrado</a> &raquo;</span><br />
  24.             <div class="edit"><?php edit_post_link('Editar Post'); ?></div>
  25.         </div>
  26.  
  27. <?php comments_template(); // Get wp-comments.php template ?>
  28.  
  29.     </div> <!-- /contpost -->
  30.          
  31. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement