'primary',
'name' => _x( 'Primary', 'sidebar', 'birthday-gift' ),
'description' => __( 'Add sidebar description.', 'birthday-gift' )
)
);
// First footer widget area, located in the footer. Empty by default.
register_sidebar( array(
'name' => __( 'First Footer Widget Area', 'tutsplus' ),
'id' => 'first-footer-widget-area',
'description' => __( 'The first footer widget area', 'tutsplus' ),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '',
) );
// Second Footer Widget Area, located in the footer. Empty by default.
register_sidebar( array(
'name' => __( 'Second Footer Widget Area', 'tutsplus' ),
'id' => 'second-footer-widget-area',
'description' => __( 'The second footer widget area', 'tutsplus' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
// Third Footer Widget Area, located in the footer. Empty by default.
register_sidebar( array(
'name' => __( 'Third Footer Widget Area', 'tutsplus' ),
'id' => 'third-footer-widget-area',
'description' => __( 'The third footer widget area', 'tutsplus' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
// Fourth Footer Widget Area, located in the footer. Empty by default.
register_sidebar( array(
'name' => __( 'Fourth Footer Widget Area', 'tutsplus' ),
'id' => 'fourth-footer-widget-area',
'description' => __( 'The fourth footer widget area', 'tutsplus' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
}
/**
* Load scripts for the front end.
*
* @since 1.0.0
* @access public
* @return void
*/
function birthday_gift_enqueue_scripts() {
}
/**
* Load stylesheets for the front end.
*
* @since 1.0.0
* @access public
* @return void
*/
function birthday_gift_enqueue_styles() {
/* Gets ".min" suffix. */
$suffix = hybrid_get_min_suffix();
/* Load one-five base style. */
wp_enqueue_style( 'one-five', trailingslashit( HYBRID_CSS ) . "one-five{$suffix}.css" );
/* Load gallery style if 'cleaner-gallery' is active. */
if ( current_theme_supports( 'cleaner-gallery' ) ) {
wp_enqueue_style( 'gallery', trailingslashit( HYBRID_CSS ) . "gallery{$suffix}.css" );
}
/* Load parent theme stylesheet if child theme is active. */
if ( is_child_theme() ) {
wp_enqueue_style( 'parent', trailingslashit( get_template_directory_uri() ) . "style{$suffix}.css" );
}
/* Load active theme stylesheet. */
wp_enqueue_style( 'style', get_stylesheet_uri() );
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css' );
}