Advertisement
Guest User

CodeGrab

a guest
May 1st, 2015
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.31 KB | None | 0 0
  1. <?php
  2.     /**
  3.      * Image Store - single image template
  4.      * @file ims-image.php
  5.      * @package Image Store
  6.      * @author Hafid Trujillo
  7.      * @copyright 20010-2013
  8.      * @filesource  wp-content/plugins/image-store/theme/ims-image.php
  9.      * @since 1.0.0
  10.      */
  11.     the_post( );
  12.     get_header( ); ?>
  13.  
  14.         <div id="primary" class="content-area">
  15.             <div id="content" class="site-content" role="main">
  16.            
  17.                 <article id="post-<?php the_ID(); ?>" <?php post_class( 'image-attachment' ); ?>>
  18.                     <header class="entry-header">
  19.                         <h1 class="art-postheader"><a href="<?php echo get_site_url(); ?>/albums/<?php echo get_the_title( $post->post_parent); ?>"><?php echo get_the_title( $post->post_parent); ?></a> > <?php the_title(); ?></h1>
  20.                     </header><!-- .entry-header -->
  21.                    
  22.                     <div class="entry-content">
  23.                         <div class="entry-attachment">
  24.                             <div class="attachment view-image">
  25.                                 <?php the_content(); ?>
  26.                             </div><!-- .attachment view-image -->
  27.                            
  28.  
  29. <div class="control-bar">
  30. <strong>Image Ref:</strong><br>
  31. <?php the_title(); ?><br><br>
  32.  
  33. <nav id="image-navigation" class="navigation image-navigation" role="navigation">
  34.     <span class="nav-previous"><?php previous_post_link( '%link', __( '<img src="'. get_site_url() .'/arrow_prev.png">') ); ?></span>&nbsp;
  35.     <span class="nav-next"><?php next_post_link( '%link', __( '<img src="'. get_site_url() .'/arrow_next.png">') ); ?></span>
  36. </nav><br><br>
  37.  
  38. <form action="<?php echo get_site_url(); ?>/albums/<?php echo get_the_title( $post->post_parent); ?>">
  39.     <input type="submit" value="View All Photos">
  40. </form><br>
  41.  
  42. <form action="<?php echo get_site_url(); ?>/albums/<?php echo get_the_title( $post->post_parent); ?>/slideshow">
  43.     <input type="submit" value="View Slideshow">
  44. </form><br>
  45.  
  46. <form action="<?php echo get_site_url(); ?>/albums/<?php echo get_the_title( $post->post_parent); ?>/shopping-cart">
  47.     <input type="submit" value="View Basket">
  48. </form><br>
  49.  
  50. </div><!-- .control-bar-->
  51.                         </div><!-- .entry-attachment -->
  52.                     </div><!-- .entry-content -->
  53.  
  54.                 </article><!-- #post -->
  55.             </div><!-- #content -->
  56.         </div><!-- #primary -->
  57. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement