Guest User

Untitled

a guest
Jan 24th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.11 KB | None | 0 0
  1. <?php get_header() ;?>
  2.  
  3.     <div id="BP-Container">
  4.         <div id="BP-Content">
  5.  
  6.             <div id="item-header">
  7.                 <?php locate_template( array( 'members/single/member-header.php' ), true ) ?>
  8.             </div>
  9.  
  10.             <div id="item-nav ">
  11.                 <div class="item-list-tabs bp-content-tabs no-ajax" id="object-nav">
  12.                     <ul>
  13.                         <?php bp_get_displayed_user_nav() ?>
  14.                     </ul>
  15.                 </div>
  16.             </div>
  17.  
  18.  
  19.             <div id="item-body">
  20.  
  21.                 <div id="subnav" class="item-list-tabs no-ajax">
  22.                     <ul class="sub-tabs">
  23.                         <?php bp_get_options_nav() ?>
  24.                     </ul>
  25.                 </div>
  26.  
  27.                     <?php if (bp_album_has_pictures() ) : bp_album_the_picture();?>
  28.                    
  29.                 <div class="picture-single activity">
  30.                     <h3><?php bp_album_picture_title() ?></h3>
  31.                    
  32.                     <div class="picture-outer-container">
  33.                         <div class="picture-inner-container">
  34.                             <div class="picture-middle">
  35.                                 <img src="<?php bp_album_picture_middle_url() ?>" />
  36.                                 <?php bp_album_adjacent_links() ?>
  37.                             </div>
  38.                         </div>
  39.                     </div>
  40.                    
  41.                     <p class="picture-description"><?php bp_album_picture_desc() ?></p>
  42.                     <p class="picture-meta">
  43.                     <div class="item-list-tabs bp-content-tabs">
  44.                         <ul>
  45.                         <li><?php bp_album_picture_edit_link()  ?>  </li>
  46.                         <li><?php bp_album_picture_delete_link()  ?></li>
  47.                         </ul>
  48.                     </div>
  49.                     </p>
  50.                    
  51.                 <?php bp_album_load_subtemplate( apply_filters( 'bp_album_template_screen_comments', 'album/comments' ) ); ?>
  52.                 </div>
  53.                    
  54.                     <?php else : ?>
  55.                    
  56.                 <div id="message" class="info">
  57.                     <p><?php echo bp_word_or_name( __( "This url is not valid.", 'bp-album' ), __( "Either this url is not valid or picture has restricted access.", 'bp-album' ),false,false ) ?></p>
  58.                 </div>
  59.                    
  60.                     <?php endif; ?>
  61.  
  62.             </div><!-- #item-body -->
  63.  
  64.         </div><!-- .padder -->
  65.     </div><!-- #content -->
  66.  
  67.     <?php locate_template( array( 'sidebar.php' ), true ) ?>
  68.  
  69. <?php get_footer() ?>
Add Comment
Please, Sign In to add comment