-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpage-sidebar.php
More file actions
33 lines (22 loc) · 647 Bytes
/
page-sidebar.php
File metadata and controls
33 lines (22 loc) · 647 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
<?php
/*
Template Name: Sidebar Page
* This is a default page with a sidebar.
*
*
* For more info: http://codex.wordpress.org/Page_Templates
*
* Visual interactive WordPress template hierarchy: https://wphierarchy.com
*/
?>
<?php get_header(); ?>
<div id="content">
<div id="inner-content" class="wrap">
<main id="main" class="main" role="main" itemscope itemprop="mainContentOfPage" itemtype="https://schema.org/Blog">
<?php // Edit the loop in /templates/loop. Or roll your own. ?>
<?php get_template_part( 'templates/loop'); ?>
</main>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>