'Page Sidebar', 'id' => 'page-sidebar', 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', )); register_sidebar(array( 'name' => 'Blog Sidebar', 'id' => 'blog-sidebar', 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', )); register_sidebar(array( 'name' => 'Footer Sidebar', 'id' => 'footer-sidebar', 'before_widget' => '', 'before_title' => '', )); } add_action( 'widgets_init', 'advertica_lite_widgets_init' ); /** * Sets up theme defaults and registers the various WordPress features that * Advertica 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 advertica_lite_theme_setup() { /* * Makes Advertica 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 'advertica-lite' to the name of your theme in all * template files. */ load_theme_textdomain( 'advertica-lite', get_template_directory() . '/languages' ); // This theme styles the visual editor with editor-style.css to match the theme style. add_editor_style(); add_theme_support( 'title-tag' ); if ( get_option('advertica_lite') != '' ) { $advertica_lite_pre_options = get_option('advertica_lite'); $header_image = $advertica_lite_pre_options['advertica_frontslider_stype']; } else { $header_image = get_template_directory_uri() . '/images/advertica-header.jpg'; } add_theme_support( 'custom-header', array( 'flex-width' => true, 'width' => 1600, 'flex-height' => true, 'height' => 500, 'default-image' => $header_image ) ); // This theme allows users to set a custom background. add_theme_support( 'custom-background', apply_filters( 'advertica_lite_custom_background_args', array('default-color' => 'ffffff') ) ); // 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'); /** * Enable support for Post Formats */ set_post_thumbnail_size( 600, 220, true ); add_image_size( 'advertica_standard_img',770,365,true); //standard 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. register_nav_menus( array( 'Header' => __( 'Main Navigation', 'advertica-lite' ), )); } add_action( 'after_setup_theme', 'advertica_lite_theme_setup' ); /** * Funtion to add CSS class to body */ function advertica_lite_add_class( $classes ) { if ( 'page' == get_option( 'show_on_front' ) && ( '' != get_option( 'page_for_posts' ) ) && is_front_page() ) { $classes[] = 'front-page'; } return $classes; } add_filter( 'body_class','advertica_lite_add_class' ); /** * Filter content with empty post title * */ add_filter('the_title', 'advertica_lite_untitled'); function advertica_lite_untitled($title) { if ($title == '') { return __('Untitled','advertica-lite'); } else { return $title; } } /** * Add Customizer */ require get_template_directory() . '/includes/customizer.php'; /** * Add Required Files */ require_once(get_template_directory() . '/SketchBoard/functions/admin-init.php'); /** * Add Sketchthemes page */ require_once(get_template_directory() . '/includes/sketchtheme-upsell.php'); ?>