'f3f3f3',); add_theme_support( 'custom-background', $defaults ); /* Add support for Custom Logo ==================================== */ add_theme_support( 'custom-logo', array( 'height' => 80, 'width' => 300, 'flex-width' => true, 'flex-height' => true, ) ); /* Add support for post and comment RSS feed links in ==================================== */ add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* Add support for Localization ==================================== */ load_theme_textdomain( 'bradbury', get_template_directory() . '/languages' ); $locale = get_locale(); $locale_file = get_template_directory() . "/languages/$locale.php"; if ( is_readable($locale_file) ) require_once($locale_file); // Register nav menus register_nav_menus( array( 'primary' => __( 'Main Menu', 'bradbury' ), 'mobile' => __( 'Mobile Menu', 'bradbury' ), 'secondary' => __( 'Secondary Menu', 'bradbury' ), ) ); add_theme_support( 'responsive-embeds' ); /* Remove support for Block Based Widgets ==================================== */ remove_theme_support( 'widgets-block-editor' ); } endif; add_action( 'after_setup_theme', 'bradbury_setup' ); add_filter( 'image_size_names_choose', 'bradbury_custom_sizes' ); function bradbury_custom_sizes( $sizes ) { return array_merge( $sizes, array( 'thumb-academia-slideshow' => __( 'Featured Image: Slideshow Size', 'bradbury' ), 'thumb-featured-page' => __( 'Featured Image: Page Thumbnail', 'bradbury' ), 'post-thumbnail' => __( 'Featured Image: Thumbnail', 'bradbury' ), ) ); } /* Add javascripts and CSS used by the theme ================================== */ function bradbury_js_scripts() { $theme_version = wp_get_theme()->get( 'Version' ); // Theme stylesheet. wp_enqueue_style( 'bradbury-style', get_stylesheet_uri(), array(), $theme_version ); if (! is_admin()) { wp_enqueue_script( 'jquery-superfish', get_template_directory_uri() . '/js/superfish.min.js', array('jquery'), true ); wp_enqueue_script( 'jquery-flexslider', get_template_directory_uri() . '/js/jquery.flexslider-min.js', array('jquery'), true ); wp_enqueue_script( 'bradbury-scripts', get_template_directory_uri() . '/js/bradbury.js', array('jquery'), $theme_version, true ); /* Icomoon */ wp_enqueue_style('academia-icomoon', get_template_directory_uri() . '/css/icomoon.css', null, $theme_version); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); } } add_action('wp_enqueue_scripts', 'bradbury_js_scripts'); /** * -------------------------------------------- * Enqueue scripts and styles for the backend. * -------------------------------------------- */ if ( ! function_exists( 'academiathemes_scripts_admin' ) ) { /** * Enqueue admin styles and scripts */ function academiathemes_scripts_admin( $hook ) { // Styles wp_enqueue_style( 'bradbury-style-admin', get_template_directory_uri() . '/academia-admin/css/academiathemes_theme_settings.css', '', ACADEMIATHEMES_VERSION, 'all' ); // Scripts wp_enqueue_script( 'academiathemes-scripts-admin', get_template_directory_uri() . '/academia-admin/js/academiathemes-admin.js', [ 'jquery' ], ACADEMIATHEMES_VERSION, true ); } } add_action( 'admin_enqueue_scripts', 'academiathemes_scripts_admin' ); /* Custom Archives titles. =================================== */ if ( ! function_exists( 'bradbury_get_the_archive_title' ) ) : function bradbury_get_the_archive_title( $title ) { if ( is_category() ) { $title = single_cat_title( '', false ); } return $title; } endif; add_filter( 'get_the_archive_title', 'bradbury_get_the_archive_title' ); /* Enable Excerpts for Static Pages ==================================== */ add_action( 'init', 'bradbury_excerpts_for_pages' ); function bradbury_excerpts_for_pages() { add_post_type_support( 'page', 'excerpt' ); } /* Custom Excerpt Length ==================================== */ function bradbury_new_excerpt_length($length) { if ( is_admin() ) { return $length; } else { return 30; } } add_filter('excerpt_length', 'bradbury_new_excerpt_length'); /* Replace invalid ellipsis from excerpts ==================================== */ function bradbury_excerpts($text) { $text = str_replace(' […]', '…', $text); $text = str_replace('[…]', '…', $text); $text = str_replace('[...]', '...', $text); return $text; } add_filter('excerpt_more', 'bradbury_excerpts'); /* Convert HEX color to RGB value (for the customizer) ==================================== */ function bradbury_hex2rgb($hex) { $hex = str_replace("#", "", $hex); if(strlen($hex) == 3) { $r = hexdec(substr($hex,0,1).substr($hex,0,1)); $g = hexdec(substr($hex,1,1).substr($hex,1,1)); $b = hexdec(substr($hex,2,1).substr($hex,2,1)); } else { $r = hexdec(substr($hex,0,2)); $g = hexdec(substr($hex,2,2)); $b = hexdec(substr($hex,4,2)); } $rgb = "$r, $g, $b"; return $rgb; // returns an array with the rgb values } /** * Add a pingback url auto-discovery header for singularly identifiable articles. */ function bradbury_pingback_header() { if ( is_singular() && pings_open() ) { echo '<link rel="pingback" href="', esc_url( get_bloginfo( 'pingback_url' ) ), '">'; } } add_action( 'wp_head', 'bradbury_pingback_header' ); /** * Adds custom classes to the array of body classes. * * @since Bradbury 1.0 * * @param array $classes Classes for the body element. * @return array (Maybe) filtered body classes. */ function bradbury_body_classes( $classes ) { $classes[] = academiathemes_helper_get_sidebar_position(); $attachments_num = 0; $bradbury_loop = new WP_Query( array( 'post_type' => array('post','page'), 'order' => 'DESC', 'orderby' => 'date', 'post__not_in' => get_option( 'sticky_posts' ), 'posts_per_page' => 5, 'meta_key' => 'academiathemes_meta_featured_item', 'meta_value' => 1 ) ); $bradbury_loop_count = $bradbury_loop->post_count; if ( is_404() ) { $classes[] = 'site-page-noslideshow'; } if ( is_search() ) { $classes[] = 'site-page-noslideshow'; } if ( ( is_home() || is_front_page() ) && $bradbury_loop_count == 0 ) { $classes[] = 'site-page-noslideshow'; } elseif ( ( is_home() || is_front_page() ) && $bradbury_loop_count > 0 ) { $classes[] = 'site-page-withslideshow'; } if ( is_archive() || is_search() ) { $classes[] = 'site-page-noslideshow'; } if ( is_singular() ) { global $post; $args = array( 'order' => 'ASC', 'orderby' => 'menu_order', 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'post_status' => null, 'numberposts' => -1 ); $attachments = get_posts($args); $attachments_num = count($attachments); if ( $attachments_num == 0 && !has_post_thumbnail() ) { $classes[] = 'site-page-noslideshow'; } else { $classes[] = 'site-page-withslideshow'; } } return $classes; } add_filter( 'body_class', 'bradbury_body_classes' ); /** * Fix skip link focus in IE11. * * This does not enqueue the script because it is tiny and because it is only for IE11, * thus it does not warrant having an entire dedicated blocking script being loaded. * * @link https://git.io/vWdr2 */ function bradbury_skip_link_focus_fix() { // The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`. ?> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> <?php } add_action( 'wp_print_footer_scripts', 'bradbury_skip_link_focus_fix' ); if ( ! function_exists( 'bradbury_the_custom_logo' ) ) { /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * * @since Bradbury 1.0 */ function bradbury_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { // We don't use the default the_custom_logo() function because of its automatic addition of itemprop attributes (they fail the ARIA tests) $site = get_bloginfo('name'); $custom_logo_id = get_theme_mod( 'custom_logo' ); if ( $custom_logo_id ) { $html = sprintf( '<a href="%1$s" class="custom-logo-link" rel="home">%2$s</a>', esc_url( home_url( '/' ) ), wp_get_attachment_image( $custom_logo_id, 'full', false, array( 'class' => 'custom-logo', 'alt' => __('Logo for ','bradbury') . esc_attr($site), ) ) ); echo $html; } } } } if ( ! function_exists( 'bradbury_comment' ) ) : /** * Template for comments and pingbacks. * Used as a callback by wp_list_comments() for displaying the comments. */ function bradbury_comment( $comment, $args, $depth ) { if ( 'pingback' == $comment->comment_type || 'trackback' == $comment->comment_type ) : ?> <li id="comment-<?php comment_ID(); ?>" <?php comment_class(); ?>> <div class="comment-body"> <?php esc_html_e( 'Pingback:', 'bradbury' ); ?> <?php comment_author_link(); ?> <?php edit_comment_link( esc_html__( 'Edit', 'bradbury' ), '<span class="edit-link">', '</span>' ); ?> </div> <?php else : ?> <li id="comment-<?php comment_ID(); ?>" <?php comment_class( empty( $args['has_children'] ) ? '' : 'parent' ); ?>> <article id="div-comment-<?php comment_ID(); ?>" class="comment-body"> <div class="comment-author vcard"> <?php if ( 0 != $args['avatar_size'] ) echo get_avatar( $comment, $args['avatar_size'] ); ?> </div><!-- .comment-author --> <header class="comment-meta"> <?php printf( '<cite class="fn">%s</cite>', get_comment_author_link() ); ?> <div class="comment-metadata"> <a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"> <time datetime="<?php comment_time( 'c' ); ?>"> <?php printf( esc_html_x( '%1$s at %2$s', '1: date, 2: time', 'bradbury' ), get_comment_date(), get_comment_time() ); ?> </time> </a> </div><!-- .comment-metadata --> <?php if ( '0' == $comment->comment_approved ) : ?> <p class="comment-awaiting-moderation"><?php esc_html_e( 'Your comment is awaiting moderation.', 'bradbury' ); ?></p> <?php endif; ?> <div class="comment-tools"> <?php edit_comment_link( esc_html__( 'Edit', 'bradbury' ), '<span class="edit-link">', '</span>' ); ?> <?php comment_reply_link( array_merge( $args, array( 'add_below' => 'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '<span class="reply">', 'after' => '</span>', ) ) ); ?> </div><!-- .comment-tools --> </header><!-- .comment-meta --> <div class="comment-content"> <?php comment_text(); ?> </div><!-- .comment-content --> </article><!-- .comment-body --> <?php endif; } endif; // ends check for bradbury_comment() if ( ! function_exists( 'wp_body_open' ) ) { function wp_body_open() { do_action( 'wp_body_open' ); } } /* Include WordPress Theme Customizer ================================== */ require_once( get_template_directory() . '/customizer/customizer.php'); /* Include Additional Options and Components ================================== */ require_once( get_template_directory() . '/academia-admin/sidebars.php'); require_once( get_template_directory() . '/academia-admin/helper-functions.php'); if ( ! function_exists( 'bradbury_register_widgets' ) ) : function bradbury_register_widgets() { require_once( get_template_directory() . '/academia-admin/widgets/featured-pages.php'); require_once( get_template_directory() . '/academia-admin/widgets/recent-posts.php'); // Register custom widgets register_widget( 'academia_widget_featured_pages' ); register_widget( 'academia_recent_posts' ); } add_action( 'widgets_init', 'bradbury_register_widgets' ); endif; /* Include Theme Options Page for Admin ================================== */ //require only in admin! if (is_admin()) { require_once('academia-admin/academia-theme-settings.php'); if (current_user_can( 'manage_options' ) ) { require_once(get_template_directory() . '/academia-admin/admin-notices/academiathemes-notices.php'); require_once(get_template_directory() . '/academia-admin/admin-notices/academiathemes-notice-welcome.php'); require_once(get_template_directory() . '/academia-admin/admin-notices/academiathemes-notice-upgrade.php'); require_once(get_template_directory() . '/academia-admin/admin-notices/academiathemes-notice-review.php'); // Remove theme data from database when theme is deactivated. add_action('switch_theme', 'bradbury_db_data_remove'); if ( ! function_exists( 'bradbury_db_data_remove' ) ) { function bradbury_db_data_remove() { delete_option( 'bradbury_admin_notices'); delete_option( 'bradbury_theme_installed_time'); } } } }