__( 'Blog Sidebar', 'swiftbiz-lite' ), 'id' => 'blog-sidebar', 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', )); register_sidebar(array( 'name' => __( 'Footer Sidebar', 'swiftbiz-lite' ), 'id' => 'footer-sidebar', 'before_widget' => '', 'before_title' => '', )); register_sidebar(array( 'name' => __( 'Home Featured Sidebar', 'swiftbiz-lite' ), 'id' => 'home-featured-sidebar', 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '', 'after_title' => '', )); register_sidebar(array( 'name' => __( 'Page Sidebar', 'swiftbiz-lite' ), 'id' => 'page-sidebar', 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', )); } add_action( 'widgets_init', 'swiftbiz_widgets_init' ); /** * Sets up theme defaults and registers the various WordPress features that * supports. * * @uses load_theme_textdomain() For translation/localization support. * @uses add_editor_style() To add Visual Editor stylesheets. * @uses add_theme_support() To add support for automatic feed links, post * formats, and post thumbnails. * @uses register_nav_menu() To add support for a navigation menu. * @uses set_post_thumbnail_size() To set a custom post thumbnail size. * */ function swiftbiz_theme_setup() { /* * Makes available for translation. * * Translations can be added to the /languages/ directory. * If you're building a theme based on Twenty Thirteen, use a find and * replace to change 'swiftbiz-lite' to the name of your theme in all * template files. */ load_theme_textdomain( 'swiftbiz-lite', get_template_directory() . '/languages' ); // This theme styles the visual editor with editor-style.css to match the theme style. add_editor_style(); // Adds RSS feed links to for posts and comments. add_theme_support( 'automatic-feed-links' ); /* * This theme uses a custom image size for featured images, displayed on * "standard" posts and pages. */ add_theme_support('post-thumbnails'); set_post_thumbnail_size( 770, 350, true ); add_image_size( 'swiftbiz_standard_img', 770, 350, true); //Standard Image Size /** * SETS UP THE CONTENT WIDTH VALUE BASED ON THE THEME'S DESIGN. */ global $content_width; if ( ! isset( $content_width ) ){ $content_width = 900; } // This theme uses wp_nav_menu() in one location which is the main navigation. register_nav_menus( array( 'Header' => __( 'Main Navigation', 'swiftbiz-lite' ), )); } add_action( 'after_setup_theme', 'swiftbiz_theme_setup' );