adding fresh FoundationPress theme from scratch
This commit is contained in:
parent
e5766ffeca
commit
3785add5fa
127 changed files with 29293 additions and 0 deletions
37
FoundationPress/library/widget-areas.php
Normal file
37
FoundationPress/library/widget-areas.php
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
/**
|
||||
* Register widget areas
|
||||
*
|
||||
* @package FoundationPress
|
||||
* @since FoundationPress 1.0.0
|
||||
*/
|
||||
|
||||
if ( ! function_exists( 'foundationpress_sidebar_widgets' ) ) :
|
||||
function foundationpress_sidebar_widgets() {
|
||||
register_sidebar(
|
||||
array(
|
||||
'id' => 'sidebar-widgets',
|
||||
'name' => __( 'Sidebar widgets', 'foundationpress' ),
|
||||
'description' => __( 'Drag widgets to this sidebar container.', 'foundationpress' ),
|
||||
'before_widget' => '<section id="%1$s" class="widget %2$s">',
|
||||
'after_widget' => '</section>',
|
||||
'before_title' => '<h6>',
|
||||
'after_title' => '</h6>',
|
||||
)
|
||||
);
|
||||
|
||||
register_sidebar(
|
||||
array(
|
||||
'id' => 'footer-widgets',
|
||||
'name' => __( 'Footer widgets', 'foundationpress' ),
|
||||
'description' => __( 'Drag widgets to this footer container', 'foundationpress' ),
|
||||
'before_widget' => '<section id="%1$s" class="widget %2$s">',
|
||||
'after_widget' => '</section>',
|
||||
'before_title' => '<h6>',
|
||||
'after_title' => '</h6>',
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
add_action( 'widgets_init', 'foundationpress_sidebar_widgets' );
|
||||
endif;
|
Loading…
Add table
Add a link
Reference in a new issue