-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php~
52 lines (51 loc) · 1.27 KB
/
index.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
49
50
51
52
<?php
get_header();
?>
<div id="title">
<img src="<?php echo get_template_directory_uri(); ?>/img/title.png" alt="BeXcellent">
<aside>
<?php get_sidebar(); ?>
</aside>
</div>
<div id="menu col-md-2">
<ul id="super">
<li id="superli">
<p>Menu</p>
<?php
$options = array(
'theme_location' => '',
'menu' => 'side-navbar',
'container' => 'false',
'container_class' => '',
'container_id' => '',
'menu_class' => 'sub',
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'depth' => 0,
'walker' => ''
);
wp_nav_menu( $options );
?>
</li>
</ul>
</div>
<div id="contentmine">
<div id="primary" class="site-content">
<div id="content" role="main">
<?php while(have_posts()) : the_post(); ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<p><?php the_content(''); ?></p>
<?php endwhile; wp_reset_query(); ?>
</div><!-- #content -->
</div><!-- #primary -->
</div>
<?php
get_sidebar();
get_footer();
?>