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' => 300, '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' => esc_html__( 'Sidebar', 'bmag' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Appears on posts and pages except Full-width Page Template', 'bmag' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Site Header', 'bmag' ), 'id' => 'bmag-sidebar-header', 'description' => esc_html__( 'Appears inside the site header, at right. You can use it to show Google AdSense ad.', 'bmag' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Mag Front Page: Below Header', 'bmag' ), 'id' => 'bmag-sidebar-fp-mag-below-header', 'description' => esc_html__( 'Appears on (BMag) Magazine Front Page template only. Use the "(BMag 5 Posts - Style 1" widget in this widget area.', 'bmag' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Mag Front Page: Main Content', 'bmag' ), 'id' => 'bmag-sidebar-fp-mag-content', 'description' => esc_html__( 'Appears on (BMag) Magazine Front Page template only. Use the (BMag) widgets to customize the content of your site front page.', 'bmag' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar(array( 'name' => esc_html__( 'Below Post Title', 'bmag' ), 'description' => esc_html__( 'Appears below posts title', 'bmag' ), 'id' => 'bmag-sidebar-below-title', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__( 'Below Post Content', 'bmag' ), 'description' => esc_html__( 'Appears at the end of posts content', 'bmag' ), 'id' => 'bmag-sidebar-below-content', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__( 'Footer 1', 'bmag' ), 'description' => esc_html__( 'Appears in footer', 'bmag' ), 'id' => 'bmag-sidebar-footer-1', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__( 'Footer 2', 'bmag' ), 'description' => esc_html__( 'Appears in footer', 'bmag' ), 'id' => 'bmag-sidebar-footer-2', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__( 'Footer 3', 'bmag' ), 'description' => esc_html__( 'Appears in footer', 'bmag' ), 'id' => 'bmag-sidebar-footer-3', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__( 'Footer 4', 'bmag' ), 'description' => esc_html__( 'Appears in footer', 'bmag' ), 'id' => 'bmag-sidebar-footer-4', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); } if ( ! function_exists( 'bmag_the_posts_pagination' ) ) { function bmag_the_posts_pagination() { echo '
'; the_posts_pagination(array( 'mid_size' => 2, 'prev_text' => __( '« Previous', 'bmag' ), 'next_text' => __( 'Next »', 'bmag' ), )); echo '
'; } } if ( ! function_exists( 'bmag_comment' ) ) : /** * Template for comments and pingbacks. * * To override this walker in a child theme without modifying the comments template * simply create your own bmag_comment(), and that function will be used instead. * * Used as a callback by wp_list_comments() for displaying the comments. * * @since BMag 1.0 */ function bmag_comment( $comment, $args, $depth ) { // $GLOBALS[ 'comment' ] = $comment. switch ( $comment->comment_type ) : case 'pingback': case 'trackback': // Display trackbacks differently than normal comments. ?>
  • id="comment-">

    ', '' ); ?>

  • id="li-comment-">
    %1$s %2$s', get_comment_author_link(), // If current post author is also comment author, make it known visually. ( $comment->user_id === $post->post_author ) ? '' . esc_html( __( 'Post author', 'bmag' ) ) . '' : '' ); printf( '', esc_url( get_comment_link( $comment->comment_ID ) ), get_comment_time( 'c' ), /* translators: 1: date, 2: time */ sprintf( __( '%1$s at %2$s', 'bmag' ), get_comment_date(), get_comment_time() ) ); ?>
    comment_approved ) : ?>

    ', '

    ' ); ?>
    __( 'Reply', 'bmag' ), 'after' => ' ', 'depth' => $depth, 'max_depth' => $args['max_depth'], ) )); ?>
    ID ) ) . '">' . __( 'Read more', 'bmag' ) . ' »'; } /** * hAtom. */ // hAtom author. function bmag_entry_author( $display = 1 ) { $author = get_the_author(); $author_url = esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); $author_string = ""; if ( 1 !== $display ) { return $author_string; } echo wp_kses_post( $author_string ); } // hAtom date. function bmag_entry_date( $display = 1 ) { $published_long = esc_attr( get_the_date( 'c' ) ); $published = get_the_date(); $updated_long = esc_attr( get_the_modified_date( 'c' ) ); $updated = get_the_modified_date(); $time_string = " "; if ( 1 !== $display ) { return $time_string; } echo $time_string; } function bmag_entry_info_fp() { $sep1 = ' '; $sep2 = '   '; $post_author = '' . $sep1 . bmag_entry_author( 0 ); $post_date = $sep2 . '' . $sep1 . bmag_entry_date( 0 ); $comments_icon = ''; echo $post_author . $post_date; if ( comments_open() ) { comments_popup_link( '', $sep2 . $comments_icon . ' 1', $sep2 . $comments_icon . ' %' ); } } if ( is_admin() ) { add_filter( 'admin_post_thumbnail_html', 'bmag_featured_image_notice', 10, 2 ); } function bmag_featured_image_notice( $content, $post_id ) { $notice = __( 'BMag Notice: In order for images to be displayed correctly in widgets, featured images must have a minimum size of 576x432 pixels.', 'bmag' ); return $content .= $notice; } add_action( 'customize_controls_enqueue_scripts', 'bmag_customizer_styles' ); function bmag_customizer_styles() { wp_enqueue_style( 'bmag-customizer-styles', get_stylesheet_directory_uri() . '/css/customizer-styles.css' ); } /** * Calculates if a light or dark color would contrast more with the provided color. * * @since 1.0.0 * * @param string $color A color in hex format. * @param string $light_color Light color that will be return. * @param string $dark_color Dark color that will be return. * @return string The hex code for the most contrasting color: dark or light. */ function bmag_color_contrast( $color, $light_color = '#ffffff', $dark_color = '#333333' ) { $hexcolor = str_replace( '#', '', $color ); $red = hexdec( substr( $hexcolor, 0, 2 ) ); $green = hexdec( substr( $hexcolor, 2, 2 ) ); $blue = hexdec( substr( $hexcolor, 4, 2 ) ); $luminosity = ( ( $red * 0.2126 ) + ( $green * 0.7152 ) + ( $blue * 0.0722 ) ); return ( $luminosity > 162 ) ? $dark_color : $light_color; } // Includes. require_once get_template_directory() . '/inc/customization.php'; require_once get_template_directory() . '/inc/customizer.php'; require_once get_template_directory() . '/inc/widget-5-posts-st1.php'; require_once get_template_directory() . '/inc/widget-5-posts-st2.php'; require_once get_template_directory() . '/inc/widget-3-posts.php'; require_once get_template_directory() . '/inc/widget-cols-cats.php';