Advertisement
Guest User

Single.php code

a guest
Feb 16th, 2011
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.75 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="maincontent">
  4.     <div id="fade">
  5.         <div class="wrapper clearfix">
  6.    
  7.             <div id="sidebar" class="clearfix">
  8.            
  9.                 <?php include ( TEMPLATEPATH . '/ad.php' ); ?>
  10.    
  11.             </div>
  12.        
  13.             <div id="content" class="clearfix">
  14.            
  15.                 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  16.                
  17.                     <div class="upload-header clearfix">
  18.                         <div class="avatar"><a class="user" title="<?php the_author(); ?>" href="<?php bloginfo('url'); ?>/members/<?php echo get_the_author_meta('user_login') ?>/"><?php echo get_avatar( get_the_author_meta('user_email'), $size = '48' ); ?></a></div>
  19.                         <div class="meta clearfix">
  20.                             <h1><?php the_title(); ?></h1>
  21.                             <p>Posted by <strong><?php printf( __( '%s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></strong></p>
  22.                             <ul>
  23.                                 <li class="date"><span title="<?php the_time('l, j F Y'); ?> at <?php the_time('g:i a'); ?>"><?php wp_time_since(); ?></span></li>
  24.                                 <li class="views"><span title="<?php userViews('',''); ?> Views"><?php userViews('',''); ?></span></li>
  25.                                 <li class="likes"><span><a title="# Likes" href="javascript:alert('coming soon');"><del>#</del></a></span></li>
  26.                                 <li class="comments"><span><?php comments_popup_link('0', '1', '%'); ?></span></li>
  27.                             </ul>
  28.                         </div>
  29.                     </div>
  30.        
  31.                     <?php the_content(); ?>
  32.        
  33.                     <div class="tags clearfix">
  34.                         <?php the_tags('<p>Tagged with:</p><ul class="clearfix"><li>','</li><li>','</li></ul>'); ?>
  35.                     </div>
  36.                    
  37.                 <?php endwhile; ?> 
  38.                    
  39.                 <?php endif; ?>
  40.                
  41.                 <?php comments_template(); ?>
  42.            
  43.             </div>
  44.    
  45.         </div>
  46.         <!-- END:Wrapper -->
  47.     </div>
  48.     <!-- END:Fade -->
  49. </div>
  50. <!-- END:Main Content -->
  51.    
  52. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement