-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtpl_menu2col.php
95 lines (34 loc) · 1.19 KB
/
tpl_menu2col.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
Template Name: 2 Column Menu Template
*/
get_header(); ?>
<div id="primary" class="content-area">
<div id="menumenu">
<?php wp_nav_menu( array( 'theme_location' => 'extra-menu' ) );
?>
<h5>also: <a href="http://screendoorrestaurant.com/itemnote/vegetarian/">vegetarian options</a> <a href="http://screendoorrestaurant.com/itemnote/vegan/">vegan options</a> <a href="http://screendoorrestaurant.com/itemnote/gluten-free/">gluten free options</a></h5></div></div>
<p></p><div class="aligncenter"><h3><?php the_field('menu_hours'); ?></h3>
<div id="content" class="site-content" role="main">
<div id="colleft">
<?php
$selmenu = get_field('sel_menu');
get_template_part( $selmenu );
?>
</div>
</div>
<div id="colright">
<?php
/*
* Loop through a repeater field
*/
if(get_field('right_side')): ?>
<?php while(the_repeater_field('right_side')): ?>
<img src="<?php the_sub_field('rs_img'); ?>" alt="" />
<?php endwhile; ?>
<?php endif;
?>
</div>
</div>
<?php get_footer(); ?>
</div><!-- primary -->