get( 'Name' ) ); define( 'BMAG_VERSION', $bmag_theme->get( 'Version' ) ); define( 'BMAG_THEME_URI', $bmag_theme->get( 'ThemeURI' ) ); define( 'BMAG_AUTHOR_URI', $bmag_theme->get( 'AuthorURI' ) ); define( 'BMAG_TEMPLATE_PARTS', 'template-parts/' ); // Set up the content width value based on the theme's design and stylesheet. if ( ! isset( $content_width ) ) { $content_width = 800; } /** * BMag setup. * * Sets up theme defaults and registers the various WordPress features that * BMag supports. * * @uses load_theme_textdomain() For translation/localization support. * @uses add_editor_style() To add a Visual Editor stylesheet. * @uses add_theme_support() To add support for post thumbnails, automatic feed links, custom background, and post formats. * @uses register_nav_menu() To add support for navigation menus. * @uses set_post_thumbnail_size() To set a custom post thumbnail size. * * @since BMag 1.0 */ add_action( 'after_setup_theme', 'bmag_setup' ); function bmag_setup() { /* * Makes BMag available for translation. * * Translations can be added to the /languages/ directory. * If you're building a theme based on BMag, use a find and replace * to change 'bmag' to the name of your theme in all the template files. */ load_theme_textdomain( 'bmag', 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 wp_nav_menu() in one location. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'bmag' ), 'social-1' => __( 'Social Menu (Top bar)', 'bmag' ), ) ); /* * This theme supports custom background color and image, * and here we also set up the default background color. */ add_theme_support( 'custom-background', array( 'default-color' => 'ffffff', ) ); // Custom logo. add_theme_support( 'custom-logo', array( 'height' => 90, 'width' => 230, 'flex-height' => true, 'flex-width' => true, ) ); add_theme_support( 'title-tag' ); // This theme uses a custom image size for featured images, displayed on "standard" posts. add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 624, 9999 ); // Unlimited height, soft crop. // Images size. add_image_size( 'bmag-excerpt-thumbnail', 240, 180, true ); add_image_size( 'bmag-excerpt-thumbnail-rounded', 180, 180, true ); add_image_size( 'bmag-recent-posts-thumbnail', 80, 60, true ); add_image_size( 'bmag-thumbnail-4x3', 576, 432, true ); add_image_size( 'bmag-thumbnail-3x2', 576, 384, true ); add_image_size( 'bmag-thumbnail-5x3', 576, 346, true ); // Indicate widget sidebars can use selective refresh in the Customizer. add_theme_support( 'customize-selective-refresh-widgets' ); } /** * Add support for a custom header image. */ require get_template_directory() . '/inc/custom-header.php'; /** * Return the Google font stylesheet URL if available. * * The use of Open Sans by default is localized. For languages that use * characters not supported by the font, the font can be disabled. * * @since BMag 1.0 * * @return string Font stylesheet or empty string if disabled. */ function bmag_get_font_url() { $font_url = ''; /** * Translators: If there are characters in your language that are not supported * by Open Sans, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Open Sans font: on or off', 'bmag' ) ) { $subsets = 'latin,latin-ext'; /** * Translators: To add an additional Open Sans character subset specific to your language, * translate this to 'greek', 'cyrillic' or 'vietnamese'. Do not translate into your own language. */ $subset = _x( 'no-subset', 'Open Sans font: add new subset (greek, cyrillic, vietnamese)', 'bmag' ); if ( 'cyrillic' === $subset ) { $subsets .= ',cyrillic,cyrillic-ext'; } elseif ( 'greek' === $subset ) { $subsets .= ',greek,greek-ext'; } elseif ( 'vietnamese' === $subset ) { $subsets .= ',vietnamese'; } $fuente = str_replace( ' ', '+', get_theme_mod( 'bmag_fonts', 'Arimo' ) ); $query_args = array( 'family' => $fuente . ':400italic,700italic,400,700', 'subset' => $subsets, ); $font_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return $font_url; } /** * Enqueue scripts and styles for front-end. * * @since BMag 1.0 */ add_action( 'wp_enqueue_scripts', 'bmag_scripts_styles' ); function bmag_scripts_styles() { global $wp_styles; /* * Adds JavaScript to pages with the comment form to support * sites with threaded comments (when in use). */ if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Adds JavaScript for handling the navigation menu hide-and-show behavior. wp_enqueue_script( 'bmag-navigation', get_template_directory_uri() . '/js/navigation.js', array( 'jquery' ), '20140711', true ); $font_url = bmag_get_font_url(); if ( ! empty( $font_url ) ) { wp_enqueue_style( 'bmag-fonts', esc_url_raw( $font_url ), array(), null ); } // Loads our main stylesheet. wp_enqueue_style( 'bmag-style', get_stylesheet_uri(), '', BMAG_VERSION ); // Mag front page sytle. wp_enqueue_style( 'bmag-widgets-fp-styles', get_template_directory_uri() . '/css/widgets-fp-styles.css', '', BMAG_VERSION ); // Loads the Internet Explorer specific stylesheet. wp_enqueue_style( 'bmag-ie', get_template_directory_uri() . '/css/ie.css', array( 'bmag-style' ), '20121010' ); $wp_styles->add_data( 'bmag-ie', 'conditional', 'lt IE 9' ); // Dashicons. wp_enqueue_style( 'dashicons' ); // Font Awesome. wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome-4.7.0/css/font-awesome.min.css' ); // BMag scripts. wp_enqueue_script( 'bmag-scripts-functions', get_template_directory_uri() . '/js/bmag-scripts-functions.js', array( 'jquery' ), BMAG_VERSION, true ); } /** * Add preconnect for Google Fonts. * * @since BMag 1.0.0 * * @param array $urls URLs to print for resource hints. * @param string $relation_type The relation type the URLs are printed. * @return array URLs to print for resource hints. */ function bmag_resource_hints( $urls, $relation_type ) { if ( wp_style_is( 'bmag-fonts', 'queue' ) && 'preconnect' === $relation_type ) { if ( version_compare( $GLOBALS['wp_version'], '4.7-alpha', '>=' ) ) { $urls[] = array( 'href' => 'https://fonts.gstatic.com', 'crossorigin', ); } else { $urls[] = 'https://fonts.gstatic.com'; } } return $urls; } add_filter( 'wp_resource_hints', 'bmag_resource_hints', 10, 2 ); /** * Filter TinyMCE CSS path to include Google Fonts. * * Adds additional stylesheets to the TinyMCE editor if needed. * * @uses bmag_get_font_url() To get the Google Font stylesheet URL. * * @since BMag 1.0 * * @param string $mce_css CSS path to load in TinyMCE. * @return string Filtered CSS path. */ add_filter( 'mce_css', 'bmag_mce_css' ); function bmag_mce_css( $mce_css ) { $font_url = bmag_get_font_url(); if ( empty( $font_url ) ) { return $mce_css; } if ( ! empty( $mce_css ) ) { $mce_css .= ','; } $mce_css .= esc_url_raw( str_replace( ',', '%2C', $font_url ) ); return $mce_css; } /** * Filter the page menu arguments. * * Makes our wp_nav_menu() fallback -- wp_page_menu() -- show a home link. * * @since BMag 1.0 */ add_filter( 'wp_page_menu_args', 'bmag_page_menu_args' ); function bmag_page_menu_args( $args ) { if ( ! isset( $args['show_home'] ) ) { $args['show_home'] = true; } return $args; } /** * Register sidebars. * * Registers our main widget area and the front page widget areas. * * @since BMag 1.0 */ add_action( 'widgets_init', 'bmag_widgets_init' ); function bmag_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar', 'bmag' ), 'id' => 'sidebar-1', 'description' => __( 'Appears on posts and pages except Full-width Page Template', 'bmag' ), 'before_widget' => '', 'before_title' => '', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Mag Front Page: Below Header', 'bmag' ), 'id' => 'bmag-sidebar-fp-mag-below-header', 'description' => __( 'Appears on (BMag) Magazine Front Page template only. Use the "(BMag 5 Posts - Style 1" widget in this widget area.', 'bmag' ), 'before_widget' => '', 'before_title' => '', '' ); ?>