Created
May 10, 2017 18:42
-
-
Save braginteractive/d3a12daa56fe4963aec7ab9cc66eadef to your computer and use it in GitHub Desktop.
3 footer widget areas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Register widget area. | |
* | |
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar | |
*/ | |
function strappress_widgets_init() { | |
register_sidebar( array( | |
'name' => esc_html__( 'Sidebar', 'strappress' ), | |
'id' => 'sidebar-1', | |
'description' => esc_html__( 'Add widgets here.', 'strappress' ), | |
'before_widget' => '<section id="%1$s" class="widget %2$s">', | |
'after_widget' => '</section>', | |
'before_title' => '<h2 class="widget-title">', | |
'after_title' => '</h2>', | |
) ); | |
register_sidebar( array( | |
'name' => esc_html__( 'Footer 1', 'strappress' ), | |
'id' => 'footer-1', | |
'description' => esc_html__( 'Add widgets here.', 'strappress' ), | |
'before_widget' => '<div id="%1$s" class="widget %2$s">', | |
'after_widget' => '</div>', | |
'before_title' => '<h4 class="widget-title">', | |
'after_title' => '</h4>', | |
) ); | |
register_sidebar( array( | |
'name' => esc_html__( 'Footer 2', 'strappress' ), | |
'id' => 'footer-2', | |
'description' => esc_html__( 'Add widgets here.', 'strappress' ), | |
'before_widget' => '<div id="%1$s" class="widget %2$s">', | |
'after_widget' => '</div>', | |
'before_title' => '<h4 class="widget-title">', | |
'after_title' => '</h4>', | |
) ); | |
register_sidebar( array( | |
'name' => esc_html__( 'Footer 3', 'strappress' ), | |
'id' => 'footer-3', | |
'description' => esc_html__( 'Add widgets here.', 'strappress' ), | |
'before_widget' => '<div id="%1$s" class="widget %2$s">', | |
'after_widget' => '</div>', | |
'before_title' => '<h4 class="widget-title">', | |
'after_title' => '</h4>', | |
) ); | |
} | |
add_action( 'widgets_init', 'strappress_widgets_init' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment