Completed
Push — master ( 80c0ca...82d23b )
by Dwain
04:32
created

Sensei_Twentyfourteen::wrapper_end()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 11
Code Lines 4

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 11
rs 9.4286
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
/**
3
 * Class Sensei_Twentyfourteen
4
 *
5
 * Responsible for wrapping twenty fourteen theme Sensei content
6
 * with the correct markup
7
 *
8
 * @since 1.9.0
9
*/
10
Class Sensei_Twentyfourteen {
11
12
    /**
13
     * Output opening wrappers
14
     * @since 1.9.0
15
     */
16
    public function wrapper_start(){
17
    ?>
18
19
        <div id="main-content" class="main-content">
20
            <div id="primary" class="content-area">
21
                <div id="content" class="site-content" role="main">
22
                    <div class="entry-content">
23
24
    <?php }
25
26
    /**
27
     * Output closing wrappers
28
     *
29
     * @since 1.9.0
30
     */
31
    public function wrapper_end(){ ?>
32
33
34
                    </div>
35
                </div>
36
            </div>
37
        </div>
38
39
        <?php
40
        get_sidebar();
41
	 }
42
43
}
44