fix undefined variable issue in header and footer
This commit is contained in:
parent
eb3e432d54
commit
ee6de9e9ca
|
@ -7,14 +7,15 @@
|
|||
* @package understrap
|
||||
*/
|
||||
|
||||
$the_theme = wp_get_theme();
|
||||
$the_theme = wp_get_theme();
|
||||
$container = get_theme_mod('understrap_container_type');
|
||||
?>
|
||||
|
||||
<?php get_sidebar('footerfull'); ?>
|
||||
|
||||
<div class="wrapper" id="wrapper-footer">
|
||||
|
||||
<div class="<?php echo $container?>" id="content">
|
||||
<div class="<?php echo $container; ?>" id="content">
|
||||
|
||||
<div class="row">
|
||||
|
||||
|
|
|
@ -8,6 +8,8 @@
|
|||
*/
|
||||
?>
|
||||
|
||||
<?php $container = get_theme_mod('understrap_container_type'); ?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html <?php language_attributes(); ?>>
|
||||
<head>
|
||||
|
@ -33,7 +35,7 @@
|
|||
|
||||
<nav class="navbar navbar-dark bg-inverse site-navigation" itemscope="itemscope" itemtype="http://schema.org/SiteNavigationElement">
|
||||
|
||||
<div class="<?php echo $container?>" id="content">
|
||||
<div class="<?php echo $container; ?>" id="content">
|
||||
|
||||
<div class="navbar-header">
|
||||
|
||||
|
|
Reference in New Issue