Remove template_part, template_sidebar, temp sidebar fix
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<!doctype html>
|
||||
<html <?php language_attributes(); ?>>
|
||||
<?php App\template_part('partials/head'); ?>
|
||||
<?php get_template_part('partials/head'); ?>
|
||||
<body <?php body_class(); ?>>
|
||||
<!--[if IE]>
|
||||
<div class="alert alert-warning">
|
||||
@@ -9,7 +9,7 @@
|
||||
<![endif]-->
|
||||
<?php
|
||||
do_action('get_header');
|
||||
App\template_part('partials/header');
|
||||
get_template_part('partials/header');
|
||||
?>
|
||||
<div class="wrap container" role="document">
|
||||
<div class="content row">
|
||||
@@ -18,14 +18,14 @@
|
||||
</main><!-- /.main -->
|
||||
<?php if (App\display_sidebar()) : ?>
|
||||
<aside class="sidebar">
|
||||
<?php App\template_sidebar(); ?>
|
||||
<?php get_template_part('partials/sidebar'); ?>
|
||||
</aside><!-- /.sidebar -->
|
||||
<?php endif; ?>
|
||||
</div><!-- /.content -->
|
||||
</div><!-- /.wrap -->
|
||||
<?php
|
||||
do_action('get_footer');
|
||||
App\template_part('partials/footer');
|
||||
get_template_part('partials/footer');
|
||||
wp_footer();
|
||||
?>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user