'ffffff' ) ) ); // Set up the WordPress core custom logo feature. add_theme_support( 'custom-logo', apply_filters( 'poseidon_custom_logo_args', array( 'height' => 50, 'width' => 250, 'flex-height' => true, 'flex-width' => true, ) ) ); // Set up the WordPress core custom header feature. add_theme_support('custom-header', apply_filters( 'poseidon_custom_header_args', array( 'header-text' => false, 'width' => 1920, 'height' => 480, 'flex-height' => true, ) ) ); // Add Theme Support for wooCommerce. add_theme_support( 'woocommerce' ); // Add extra theme styling to the visual editor. add_editor_style( array( 'css/editor-style.css', poseidon_google_fonts_url() ) ); // Add Theme Support for Selective Refresh in Customizer. add_theme_support( 'customize-selective-refresh-widgets' ); } endif; add_action( 'after_setup_theme', 'poseidon_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 poseidon_content_width() { $GLOBALS['content_width'] = apply_filters( 'poseidon_content_width', 840 ); } add_action( 'after_setup_theme', 'poseidon_content_width', 0 ); /** * Register widget areas and custom widgets. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function poseidon_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'poseidon' ), 'id' => 'sidebar', 'description' => esc_html__( 'Appears on posts and pages except the full width template.', 'poseidon' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar( array( 'name' => esc_html__( 'Magazine Homepage', 'poseidon' ), 'id' => 'magazine-homepage', 'description' => esc_html__( 'Appears on Magazine Homepage template only. You can use the Magazine Posts widgets here.', 'poseidon' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); } add_action( 'widgets_init', 'poseidon_widgets_init' ); /** * Enqueue scripts and styles. */ function poseidon_scripts() { // Get Theme Version. $theme_version = wp_get_theme()->get( 'Version' ); // Register and Enqueue Stylesheet. wp_enqueue_style( 'poseidon-stylesheet', get_stylesheet_uri(), array(), $theme_version ); // Register Genericons. wp_enqueue_style( 'genericons', get_template_directory_uri() . '/css/genericons/genericons.css', array(), '3.4.1' ); // Register and Enqueue HTML5shiv to support HTML5 elements in older IE versions. wp_enqueue_script( 'html5shiv', get_template_directory_uri() . '/js/html5shiv.min.js', array(), '3.7.3' ); wp_script_add_data( 'html5shiv', 'conditional', 'lt IE 9' ); // Register and enqueue navigation.js. wp_enqueue_script( 'poseidon-jquery-navigation', get_template_directory_uri() . '/js/navigation.js', array( 'jquery' ), '20160719' ); // Register and Enqueue Google Fonts. wp_enqueue_style( 'poseidon-default-fonts', poseidon_google_fonts_url(), array(), null ); // Register Comment Reply Script for Threaded Comments. if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'poseidon_scripts' ); /** * Retrieve Font URL to register default Google Fonts */ function poseidon_google_fonts_url() { // Set default Fonts. $font_families = array( 'Ubuntu:400,400italic,700,700italic', 'Raleway:400,700' ); // Build Fonts URL. $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' ); return apply_filters( 'poseidon_google_fonts_url', $fonts_url ); } /** * Add custom sizes for featured images */ function poseidon_add_image_sizes() { // Add Custom Header Image Size. add_image_size( 'poseidon-header-image', 1920, 480, true ); // Add different thumbnail sizes for widgets and post layouts. add_image_size( 'poseidon-thumbnail-small', 120, 80, true ); add_image_size( 'poseidon-thumbnail-medium', 360, 240, true ); add_image_size( 'poseidon-thumbnail-large', 600, 400, true ); add_image_size( 'poseidon-thumbnail-single', 840, 420, true ); } add_action( 'after_setup_theme', 'poseidon_add_image_sizes' ); /** * Include Files */ // Include Theme Info page. require get_template_directory() . '/inc/theme-info.php'; // Include Theme Customizer Options. require get_template_directory() . '/inc/customizer/customizer.php'; require get_template_directory() . '/inc/customizer/default-options.php'; // Include Extra Functions. require get_template_directory() . '/inc/extras.php'; // Include Template Functions. require get_template_directory() . '/inc/template-tags.php'; // Include support functions for Theme Addons. require get_template_directory() . '/inc/addons.php'; // Include Post Slider Setup. require get_template_directory() . '/inc/slider.php'; // Include Widget Files. require get_template_directory() . '/inc/widgets/widget-magazine-posts-boxed.php'; require get_template_directory() . '/inc/widgets/widget-magazine-posts-columns.php'; require get_template_directory() . '/inc/widgets/widget-magazine-posts-grid.php';