tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus(
array(
'menu-1' => esc_html__( 'Primary', 'caper' ),
)
);
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'style',
'script',
)
);
// Set up the WordPress core custom background feature.
add_theme_support(
'custom-background',
apply_filters(
'caper_custom_background_args',
array(
'default-color' => 'ffffff',
'default-image' => '',
)
)
);
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support(
'custom-logo',
array(
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
)
);
add_editor_style();
}
endif;
add_action( 'after_setup_theme', 'caper_setup' );
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*/
function caper_content_width() {
$GLOBALS['content_width'] = apply_filters( 'caper_content_width', 640 );
}
add_action( 'after_setup_theme', 'caper_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function caper_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'caper' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'caper' ),
'before_widget' => '',
'before_title' => '
',
'container_selector' => '#widget-area',
)
);
// Columns for the first widget section
register_sidebar(
array(
'name' => esc_html__( 'Section 1 Column 1', 'caper' ),
'id' => 's1c1',
'description' => esc_html__( 'Add widgets here.', 'caper' ),
'before_widget' => '',
'before_title' => '',
'container_selector' => '#widget-area',
));
register_sidebar(
array(
'name' => esc_html__( 'Section 1 Column 2', 'caper' ),
'id' => 's1c2',
'description' => esc_html__( 'Add widgets here.', 'caper' ),
'before_widget' => '',
'before_title' => '',
'container_selector' => '#widget-area',
));
register_sidebar(
array(
'name' => esc_html__( 'Section 1 Column 3', 'caper' ),
'id' => 's1c3',
'description' => esc_html__( 'Add widgets here.', 'caper' ),
'before_widget' => '',
'before_title' => '',
'container_selector' => '#widget-area',
));
// Columns for the second widget section
register_sidebar(
array(
'name' => esc_html__( 'Section 2 Column 1', 'caper' ),
'id' => 's2c1',
'description' => esc_html__( 'Add widgets here.', 'caper' ),
'before_widget' => '',
'before_title' => '',
'container_selector' => '#widget-area',
));
register_sidebar(
array(
'name' => esc_html__( 'Section 2 Column 2', 'caper' ),
'id' => 's2c2',
'description' => esc_html__( 'Add widgets here.', 'caper' ),
'before_widget' => '',
'before_title' => '',
'container_selector' => '#widget-area',
));
register_sidebar(
array(
'name' => esc_html__( 'Section 2 Column 3', 'caper' ),
'id' => 's2c3',
'description' => esc_html__( 'Add widgets here.', 'caper' ),
'before_widget' => '',
'before_title' => '',
'container_selector' => '#widget-area',
));
// Columns for the second widget section
register_sidebar(
array(
'name' => esc_html__( 'Footer Widgets Column 1', 'caper' ),
'id' => 's3c1',
'description' => esc_html__( 'Add widgets here.', 'caper' ),
'before_widget' => '',
'before_title' => '',
'container_selector' => '#widget-area',
));
register_sidebar(
array(
'name' => esc_html__( 'Footer Widgets Column 2', 'caper' ),
'id' => 's3c2',
'description' => esc_html__( 'Add widgets here.', 'caper' ),
'before_widget' => '',
'before_title' => '',
'container_selector' => '#widget-area',
));
register_sidebar(
array(
'name' => esc_html__( 'Footer Widgets Column 3', 'caper' ),
'id' => 's3c3',
'description' => esc_html__( 'Add widgets here.', 'caper' ),
'before_widget' => '',
'before_title' => '',
'container_selector' => '#widget-area',
));
register_sidebar(
array(
'name' => esc_html__( 'After Footer Widgets', 'caper' ),
'id' => 's4',
'description' => esc_html__( 'Add widgets here.', 'caper' ),
'before_widget' => '',
'before_title' => '',
'container_selector' => '#widget-area',
));
}
add_action( 'widgets_init', 'caper_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function caper_scripts() {
wp_enqueue_style( 'caper-style', get_stylesheet_uri(), array(), CAPER_VERSION );
wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/assets/fontawesome/css/all.css' );
wp_style_add_data( 'caper-style', 'rtl', 'replace' );
wp_enqueue_script( 'caper-navigation', get_template_directory_uri() . '/js/navigation.js', array(), CAPER_VERSION, true );
wp_enqueue_script( 'caper-index', get_template_directory_uri() . '/js/index.js', array(), CAPER_VERSION, true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'caper_scripts' );
/**
* Enqueue styles for customizer.
*/
function caper_cust_scripts() {
wp_enqueue_style( 'caper-customizer-style', get_template_directory_uri() . '/inc/customizer/controls/controls.css', array(), CAPER_VERSION );
}
add_action( 'customize_controls_enqueue_scripts', 'caper_cust_scripts' );
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Functions which enhance the theme by hooking into WordPress.
*/
require get_template_directory() . '/inc/template-functions.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
if ( defined( 'JETPACK__VERSION' ) ) {
require get_template_directory() . '/inc/jetpack.php';
}
// Load walker for main menu
require get_template_directory() . '/inc/walker/walker.php';
function caper_filter_front_page_template( $template ) {
return is_home() ? '' : $template;
}
add_filter( 'frontpage_template', 'caper_filter_front_page_template' );
function caper_enqueue_ie_scripts() {
global $is_IE;
// Script for Internet Explorer compatibility
if($is_IE) {
wp_enqueue_style('caper-ie', get_template_directory_uri() . '/assets/css/ie9-styles.css');
wp_enqueue_script( 'caper-index', get_template_directory_uri() . '/js/modernizr-custom.js', array(), CAPER_VERSION, true );
wp_enqueue_script( 'caper-navigation', get_template_directory_uri() . '/js/navigation-ie.js', array(), CAPER_VERSION, true );
}
}
add_action( 'wp_enqueue_scripts', 'caper_enqueue_ie_scripts' );
// Add google fonts
// function caper_add_google_fonts() {
// wp_enqueue_style( 'wpb-google-fonts', 'https://fonts.googleapis.com/css?family=Architects+Daughter:300italic,400italic,700italic,400,700,300', false );
// wp_enqueue_style( 'wpb-google-fonts', 'https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,700,300', false );
// }
// add_action( 'wp_enqueue_scripts', 'caper_add_google_fonts' );