From: Laury GvR Date: Fri, 30 Jun 2017 18:44:07 +0000 (-0400) Subject: Separate widget areas for left/right header ads X-Git-Tag: v1.0.14^2 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=dad1119c57a800402c20df0408347cdf77ce40a6;p=WP-Themes%2Fmackinawareavb.git Separate widget areas for left/right header ads --- diff --git a/functions.php b/functions.php index 0385f62..fdcd620 100644 --- a/functions.php +++ b/functions.php @@ -20,9 +20,14 @@ if (!function_exists('glm_quicksite_widget_init')) { 'description' => __('Meta Slider/Slideshow Area') )); register_sidebar(array( - 'name' => __('Header Ads'), - 'id' => 'header-ads', - 'description' => __('For Ads in the Header') + 'name' => __('Header Ads - Left'), + 'id' => 'header-ads-left', + 'description' => __('For left ads in the header') + )); + register_sidebar(array( + 'name' => __('Header Ads - Right'), + 'id' => 'header-ads-right', + 'description' => __('For right ads in the header') )); } diff --git a/sections/header.php b/sections/header.php index aea4223..16a9549 100644 --- a/sections/header.php +++ b/sections/header.php @@ -3,9 +3,19 @@