wp_blog/wp-content/themes/Bootstrap-for-WordPress-master/attachment.php

27 lines
542 B
PHP
Raw Normal View History

2020-01-02 23:15:16 +07:00
<?php
/**
* The template for displaying attachments.
*
*/
get_header(); ?>
<div class="content single-attachment" role="main">
<div class="row">
<div class="span9">
<?php
/* Run the loop to output the attachment.
* If you want to overload this in a child theme then include a file
* called loop-attachment.php and that will be used instead.
*/
get_template_part( 'loop', 'attachment' );
?>
</div><!-- .span9 -->
</div><!-- .row -->
</div><!-- .content -->
<?php get_footer(); ?>