'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_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_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();
// 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
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'Header' => __( 'Main Navigation', 'advertica-lite' ),
));
}
add_action( 'after_setup_theme', 'advertica_theme_setup' );
/**
* Funtion to add CSS class to body
*/
function advertica_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_add_class' );
/**
* Filter content with empty post title
*
*/
add_filter('the_title', 'advertica_untitled');
function advertica_untitled($title) {
if ($title == '') {
return __('Untitled','advertica-lite');
} else {
return $title;
}
}
/*---------------------------------------------------------------------------*/
/* ADMIN SCRIPT: Enqueue scripts in back-end
/*---------------------------------------------------------------------------*/
if( !function_exists('advertica_page_admin_enqueue_scripts') ){
add_action('admin_print_scripts-appearance_page_options-framework','advertica_page_admin_enqueue_scripts');
/**
* Register scripts for admin panel
* @return void
*/
function advertica_page_admin_enqueue_scripts(){
wp_enqueue_script('my-upload', get_template_directory_uri() .'/SketchBoard/js/admin-jqery.js', array('jquery','media-upload','thickbox'));
wp_enqueue_style( 'advertica-admin-stylesheet', get_template_directory_uri().'/SketchBoard/css/sketch-admin.css', false);
}
}
/* Loads the Options Panel * * If you're loading from a child theme use stylesheet_directory * instead of template_directory */
if ( !function_exists( 'optionsframework_init' ) ) {
//Theme Shortname
$advertica_shortname = 'advertica';
$advertica_themename='Advertica Theme';
define( 'OPTIONS_FRAMEWORK_DIRECTORY', get_template_directory_uri() . '/SketchBoard/includes/' );
require_once get_template_directory() . '/SketchBoard/includes/options-framework.php';
require_once get_template_directory() . '/SketchBoard/includes/sketchtheme-upsell.php';
require_once get_template_directory() . '/SketchBoard/functions/admin-init.php';
}