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' ); // Custom logo $defaults = array( 'flex-height' => true, 'flex-width' => true, ); add_theme_support( 'custom-logo', $defaults ); // This theme uses wp_nav_menu() in two locations. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'the-m-x' ), 'social' => esc_html__( 'Social Profiles', 'the-m-x' ), ) ); /* * 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', ) ); /* * Enable support for Post Formats. * See https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'aside', 'audio', 'gallery', 'image', 'link', 'quote', 'video', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'the_mx_custom_background_args', array( 'default-color' => 'efebe9', 'default-image' => '', ) ) ); if( get_theme_mod( 'the_mx_color_scheme' ) == 'brown' ) { set_theme_mod( 'background_color', 'efebe9' ); } // Custom image sizes add_image_size( 'gallery-thumb', 300, 300, array( 'center', 'center' ) ); // Support for Gutenberg add_theme_support( 'align-wide' ); add_theme_support( 'editor-color-palette', array( array( 'name' => esc_html__( 'White', 'the-m-x' ), 'slug' => 'white', 'color' => '#ffffff', ), array( 'name' => esc_html__( 'Brown 50', 'the-m-x' ), 'slug' => 'brown-50', 'color' => '#efebe9', ), array( 'name' => esc_html__( 'Brown 300', 'the-m-x' ), 'slug' => 'brown-300', 'color' => '#a1887f', ), array( 'name' => esc_html__( 'Brown 500', 'the-m-x' ), 'slug' => 'brown-500', 'color' => '#795548', ), array( 'name' => esc_html__( 'Brown 700', 'the-m-x' ), 'slug' => 'brown-700', 'color' => '#5d4037', ), array( 'name' => esc_html__( 'Brown 900', 'the-m-x' ), 'slug' => 'brown-900', 'color' => '#3e2723', ), array( 'name' => esc_html__( 'Amber 500', 'the-m-x' ), 'slug' => 'amber-500', 'color' => '#ffc107', ), array( 'name' => esc_html__( 'Blue Gray 50', 'the-m-x' ), 'slug' => 'blue-gray-50', 'color' => '#eceff1', ), array( 'name' => esc_html__( 'Blue Gray 300', 'the-m-x' ), 'slug' => 'blue-gray-300', 'color' => '#90a4ae', ), array( 'name' => esc_html__( 'Blue Gray 500', 'the-m-x' ), 'slug' => 'blue-gray-500', 'color' => '#607d8b', ), array( 'name' => esc_html__( 'Blue Gray 700', 'the-m-x' ), 'slug' => 'blue-gray-700', 'color' => '#455a64', ), array( 'name' => esc_html__( 'Blue Gray 900', 'the-m-x' ), 'slug' => 'blue-gray-900', 'color' => '#263238', ) ) ); } endif; add_action( 'after_setup_theme', 'the_mx_setup' ); function the_mx_image_sizes( $sizes ) { $addsizes = array( 'gallery-thumb' => __( 'Gallery Thumbnail (300 x 300, hard cropped)', 'the-m-x' ), ); $newsizes = array_merge( $sizes, $addsizes ); return $newsizes; } add_filter( 'image_size_names_choose', 'the_mx_image_sizes' ); /* Jetpack Responsive Videos- Requires the Jetpack plugin to be installed and activated */ function the_mx_responsive_videos() { add_theme_support( 'jetpack-responsive-videos' ); } add_action( 'after_setup_theme', 'the_mx_responsive_videos' ); /** * 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 the_mx_content_width() { $GLOBALS['content_width'] = apply_filters( 'the_mx_content_width', 960 ); } add_action( 'after_setup_theme', 'the_mx_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function the_mx_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'the-m-x' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets to the Sidebar.', 'the-m-x' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Hero Image Widget', 'the-m-x' ), 'id' => 'hero-image-widget', 'description' => esc_html__( 'Add widget to be displayed above Hero (header) Image.', 'the-m-x' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widgets', 'the-m-x' ), 'id' => 'footer-widget-area', 'description' => esc_html__( 'Add widgets to the Footer.', 'the-m-x' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'the_mx_widgets_init' ); /** * Enqueue scripts and styles. */ function the_mx_enqueue_scripts() { //wp_enqueue_style( 'the-mx-style', get_stylesheet_uri() ); wp_enqueue_style( 'the-mx-style', get_template_directory_uri() . '/style.min.css' ); // Enqueue this for now; may be added to the Customizer later wp_enqueue_style( 'the-mx-right-sidebar-overlay', get_template_directory_uri() . '/layouts/content-sidebar-overlay.css', array( 'the-mx-style' ) ); wp_enqueue_style( 'the-mx-material-icons', 'https://fonts.googleapis.com/icon?family=Material+Icons', false ); wp_enqueue_style( 'the-mx-social-icons', get_template_directory_uri() . '/css/themify-icons.css', false ); wp_enqueue_style( 'the-mx-fonts', 'https://fonts.googleapis.com/css?family=Raleway:400,500,300', false ); wp_enqueue_style( 'the-mx-grid', get_template_directory_uri() . '/layouts/jgd-material-grid.css', array( 'the-mx-style') ); wp_enqueue_script( 'the-mx-grid-js', get_template_directory_uri() . '/js/jgd-grid.min.js', array(), '', true ); $parameters = array( 'layouts' => get_theme_mod( 'the_mx_layout' ), ); wp_localize_script( 'the-mx-grid-js', 'jgdGridParams', $parameters ); if( is_page_template( 'page-templates/page_landing.php' ) ) { wp_enqueue_script( 'the-mx-headroom', get_template_directory_uri() . '/js/headroom.min.js', array(), '20180530', true ); } wp_enqueue_script( 'the-mx-scripts', get_template_directory_uri() . '/js/the-mx-scripts.min.js', array(), '', true ); $parameters = array( 'sliderControl' => get_theme_mod( 'the_mx_single_slider' ), 'primaryColor3' => esc_html( get_theme_mod( 'the_mx_custom_primary_3' ) ), 'customColors' => get_theme_mod( 'the_mx_color_scheme' ), ); wp_localize_script( 'the-mx-scripts', 'mxScriptParams', $parameters ); wp_enqueue_script( 'the-mx-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20160511', true ); wp_enqueue_script( 'the-mx-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true ); wp_enqueue_script( 'the-mx-throttle-debounce', get_template_directory_uri() . '/js/ba-throttle-debounce.min.js', array(), '', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } if ( get_theme_mod( 'the_mx_color_scheme' ) == 'blue_gray' ) { wp_enqueue_style( 'the-mx-color-bluegray', get_template_directory_uri() . '/css/alt-color-scheme-bluegray.css', array( 'the-mx-style' ), '' ); } if ( get_theme_mod( 'the_mx_enable_colorbox' ) == 1 && shortcode_exists( 'gallery' ) ) { wp_enqueue_style( 'the-mx-colorbox-css', get_template_directory_uri() . '/css/the-mx-colorbox.css' ); wp_enqueue_script( 'the-mx-colorbox', get_template_directory_uri() . '/js/jquery.colorbox-min.js', array( 'jquery' ), '', false ); wp_enqueue_script( 'the-mx-colorbox-main', get_template_directory_uri() . '/js/colorbox-main.js', array( 'the-mx-colorbox' ), '', true ); // Supply colorbox main file with customizer settings $parameters = array( 'link_to' => get_theme_mod( 'the_mx_media_link_to' ), ); wp_localize_script( 'the-mx-colorbox-main', 'colorboxParams', $parameters ); } if ( get_theme_mod( 'the_mx_single_slider' ) == 1 && is_single() ) { wp_dequeue_script( 'the-mx-colorbox' ); wp_dequeue_script( 'the-mx-colorbox-main' ); wp_dequeue_style( 'the-mx-colorbox-css' ); } if ( get_theme_mod( 'the_mx_skrollr_animations' ) == 1 ) { wp_enqueue_script( 'the-mx-skrollr', get_template_directory_uri() . '/js/skrollr.min.js', array( 'the-mx-scripts' ), '', true ); wp_add_inline_script( 'the-mx-skrollr', 'var s = skrollr.init({ forceHeight: false });' ); $parameters = array( 'layout_type' => get_theme_mod( 'the_mx_layout' ), ); wp_localize_script( 'the-mx-scripts', 'mxSkrollrParams', $parameters ); } if( get_theme_mod( 'the_mx_animate_css' ) == 1 ) { wp_enqueue_style( 'the-mx-animations', get_template_directory_uri() . '/css/animate.min.css', array(), '' ); wp_enqueue_script( 'the-mx-animations-js', get_template_directory_uri() . '/js/animations.js', array( 'jquery' ), '', true ); wp_enqueue_style( 'the-mx-ripple-animation', get_template_directory_uri() . '/css/ripple.min.css', array(), '' ); wp_enqueue_script( 'the-mx-ripple-animation-js', get_template_directory_uri() . '/js/ripple.min.js', array( 'jquery' ), '', true ); wp_enqueue_style( 'the-mx-preloader', get_template_directory_uri() . '/css/spinner.css' ); } } add_action( 'wp_enqueue_scripts', 'the_mx_enqueue_scripts' ); /* For the Gutenberg editor styles */ function the_mx_add_gutenberg_styles() { wp_enqueue_style( 'the-mx-gutenberg-styles', get_theme_file_uri( '/css/gutenberg-editor-styles.css' ), false ); } add_action( 'enqueue_block_editor_assets', 'the_mx_add_gutenberg_styles' ); /** * Colorbox content */ require get_template_directory() . '/inc/colorbox-gallery-content.php'; /** * 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'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; require get_template_directory() . '/inc/customizer-frontend.php'; /* Customizer functions */ function the_mx_medialink_switcher() { // see inc/customizer.php if( get_theme_mod( 'the_mx_media_link_to' ) == 'attachment' ) { return 'attachment'; } else { return 'file'; } } require get_template_directory() . '/inc/post-format-functions.php'; require get_template_directory() . '/inc/imagegrid-function.php'; function the_mx_imagegrid_postnum_switcher() { // This is used with the posts_per_page parameter in page-templates/page_image_grid.php $imagegrid_postcount = get_theme_mod( 'the_mx_select_cat_numposts' ); switch( $imagegrid_postcount ) { case 'one': return 1; break; case 'two': return 2; break; case 'three': return 3; break; case 'four': return 4; break; case 'five': return 5; break; case 'six': return 6; break; case 'seven': return 7; break; case 'eight': return 8; break; case 'nine': return 9; break; case 'ten': return 10; break; case 'eleven': return 11; break; case 'twelve': return 12; break; default: return -1; } } /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /* include gallery functions */ require get_template_directory() . '/inc/gallery-functions.php';