forked from Codeinwp/lawyeria-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
attachment.php
33 lines (33 loc) · 1000 Bytes
/
attachment.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
* The template for displaying Attachment.
*
* @package lawyeria-lite
*/
get_header();
?>
<section class="wide-nav">
<div class="wrapper">
<h3>
<?php the_title(); ?>
</h3><!--/h3-->
</div><!--/div .wrapper-->
</section><!--/section .wide-nav-->
</header><!--/header-->
<section id="content">
<div class="wrapper cf">
<div id="posts">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
<div class="post-excerpt">
<img src="<?php echo wp_get_attachment_url($post->ID); ?>" title="<?php the_title(); ?>" alt="<?php the_title(); ?>" />
</div><!--/div .post-excerpt-->
</div><!--/div .post-->
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.', 'lawyeria-lite'); ?></p>
<?php endif; ?>
</div><!--/div #posts-->
<?php get_sidebar(); ?>
</div><!--/div .wrapper-->
</section><!--/section #content-->
<?php get_footer(); ?>