123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /**
- * This file adds all the widget spaces to the Captivating theme.
- *
- * @package Captivating
- * @link http://restored316designs.com/themes
- * @author Lauren Gaige // Restored 316 LLC
- * @copyright Copyright (c) 2015, Restored 316 LLC, Released 08/09/2017
- * @license GPL-2.0+
- */
- //* Register widget areas
- //* Home Page Widgets
- genesis_register_sidebar( array(
- 'id' => 'home-featured',
- 'name' => __( 'Home Featured', 'captivating' ),
- 'description' => __( 'This is the featured section on the home page that extends across the page.', 'captivating' ),
- ) );
- genesis_register_sidebar( array(
- 'id' => 'home-above-content',
- 'name' => __( 'Home Above Content', 'captivating' ),
- 'description' => __( 'This is the space that appears immediately above the blog content on the home page.', 'captivating' ),
- ) );
- genesis_register_sidebar( array(
- 'id' => 'home-below-content',
- 'name' => __( 'Home Below Content', 'captivating' ),
- 'description' => __( 'This is the space that appears immediately below the blog content on the home page.', 'captivating' ),
- ) );
- //* Navigation Widgets
- genesis_register_sidebar( array(
- 'id' => 'announcement-widget',
- 'name' => __( 'Announcements', 'captivating' ),
- 'description' => __( 'This is the section at the very top of your site for special announcements.', 'captivating' ),
- ) );
- genesis_register_sidebar( array(
- 'id' => 'nav-social-menu',
- 'name' => __( 'Nav Social Menu', 'captivating' ),
- 'description' => __( 'This is the social media section that appears in the menu above the header.', 'captivating' ),
- ) );
- //* Other Widgets
- genesis_register_sidebar( array(
- 'id' => 'site-wide-cta',
- 'name' => __( 'Site Wide CTA', 'captivating' ),
- 'description' => __( 'This widget space appears on the home page under the Home Featured section as well as above the footer on all other pages.', 'captivating' ),
- ) );
- genesis_register_sidebar( array(
- 'id' => 'category-index',
- 'name' => __( 'Category Index', 'captivating' ),
- 'description' => __( 'This widget area that appears on the Category Index page when using the Category Index page template.', 'captivating' ),
- ) );
- genesis_register_sidebar( array(
- 'id' => 'above-blog-content',
- 'name' => __( 'Above Blog Content', 'captivating' ),
- 'description' => __( 'This is the above blog content section of the custom blog page template.', 'captivating' ),
- ) );
- //* Footer Widgets
- genesis_register_sidebar( array(
- 'id' => 'widget-below-footer',
- 'name' => __( 'Footer Instagram Widget', 'captivating' ),
- 'description' => __( 'This widget area appears below the footer.', 'captivating' ),
- ) );
|