-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-lookbook.php
More file actions
40 lines (30 loc) · 805 Bytes
/
single-lookbook.php
File metadata and controls
40 lines (30 loc) · 805 Bytes
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
34
35
36
37
38
39
40
<?php
/**
* The template for displaying all single posts.
*
* @package storefront
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class("lookbook_container"); ?>>
<div class="lookbook-menu">
<?php
wp_nav_menu( array(
'theme_location' => 'lookbook',
'container' => 'nav',
'container_class' => 'lookbook-menu-container',
) );
?>
</div>
<div class="entry-content entry-content--lookbook">
<?php the_content(); ?>
</div>
</article>
<?php endwhile; endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
do_action( 'storefront_sidebar' );
get_footer();