'primary', 'name' => _x( 'Primary', 'sidebar', 'birthday-gift' ), 'description' => __( 'This is the primary sidebar', 'birthday-gift' ) ) ); // First footer widget area, located in the footer. Empty by default. register_sidebar( array( 'name' => __( 'First Footer Widget Area', 'birthday-gift' ), 'id' => 'first-footer-widget-area', 'description' => __( 'The first footer widget area', 'birthday-gift' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); // Second Footer Widget Area, located in the footer. Empty by default. register_sidebar( array( 'name' => __( 'Second Footer Widget Area', 'birthday-gift' ), 'id' => 'second-footer-widget-area', 'description' => __( 'The second footer widget area', 'birthday-gift' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); // Third Footer Widget Area, located in the footer. Empty by default. register_sidebar( array( 'name' => __( 'Third Footer Widget Area', 'birthday-gift' ), 'id' => 'third-footer-widget-area', 'description' => __( 'The third footer widget area', 'birthday-gift' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); // Fourth Footer Widget Area, located in the footer. Empty by default. register_sidebar( array( 'name' => __( 'Fourth Footer Widget Area', 'birthday-gift' ), 'id' => 'fourth-footer-widget-area', 'description' => __( 'The fourth footer widget area', 'birthday-gift' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } /** * Load scripts for the front end. * * @since 1.0.0 * @access public * @return void */ /** * 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( 'birthday-gift-style', get_stylesheet_uri() ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css' ); }