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. */ add_theme_support( 'post-thumbnails' ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, and column width. */ add_editor_style( array( 'assets/css/editor-style.css', get_template_directory_uri() . '/assets/css/font-awesome.css', motospeed_fonts_url() ) ); /* * Set Custom Background */ add_theme_support( 'custom-background', array ('default-color' => '#ffffff') ); // Set the default content width. $GLOBALS['content_width'] = 900; // This theme uses wp_nav_menu() in header menu register_nav_menus( array( 'primary' => __( 'Primary Menu', 'motospeed' ), 'footer' => __( 'Footer Menu', 'motospeed' ), ) ); $defaults = array( 'flex-height' => false, 'flex-width' => false, 'header-text' => array( 'site-title', 'site-description' ), ); add_theme_support( 'custom-logo', $defaults ); } endif; // motospeed_setup add_action( 'after_setup_theme', 'motospeed_setup' ); if ( ! function_exists( 'motospeed_fonts_url' ) ) : /** * Load google font url used in the MotoSpeed theme */ function motospeed_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Overlock, translate this to 'off'. Do not translate * into your own language. */ $questrial = _x( 'on', 'Overlock font: on or off', 'motospeed' ); if ( 'off' !== $questrial ) { $font_families = array(); $font_families[] = 'Overlock'; $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), ); $fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' ); } return $fonts_url; } endif; // motospeed_fonts_url if ( ! function_exists( 'motospeed_load_scripts' ) ) : /** * the main function to load scripts in the MotoSpeed theme * if you add a new load of script, style, etc. you can use that function * instead of adding a new wp_enqueue_scripts action for it. */ function motospeed_load_scripts() { // load main stylesheet. wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/css/font-awesome.css', array( ) ); wp_enqueue_style( 'animate-css', get_template_directory_uri() . '/assets/css/animate.css', array( ) ); wp_enqueue_style( 'motospeed-style', get_stylesheet_uri(), array() ); wp_enqueue_style( 'motospeed-fonts', motospeed_fonts_url(), array(), null ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_enqueue_script( 'viewportchecker', get_template_directory_uri() . '/assets/js/viewportchecker.js', array( 'jquery' ) ); // Load Utilities JS Script wp_enqueue_script( 'motospeed-utilities', get_template_directory_uri() . '/assets/js/utilities.js', array( 'jquery', 'viewportchecker' ) ); $data = array( 'loading_effect' => ( get_theme_mod('motospeed_animations_display', 1) == 1 ), ); wp_localize_script('motospeed-utilities', 'motospeed_options', $data); } endif; // motospeed_load_scripts add_action( 'wp_enqueue_scripts', 'motospeed_load_scripts' ); if ( ! function_exists( 'motospeed_widgets_init' ) ) : /** * widgets-init action handler. Used to register widgets and register widget areas */ function motospeed_widgets_init() { // Register Sidebar Widget. register_sidebar( array ( 'name' => __( 'Sidebar Widget Area', 'motospeed'), 'id' => 'sidebar-widget-area', 'description' => __( 'The sidebar widget area', 'motospeed'), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); /** * Add Homepage Columns Widget areas */ register_sidebar( array ( 'name' => __( 'Homepage Column #1', 'motospeed' ), 'id' => 'homepage-column-1-widget-area', 'description' => __( 'The Homepage Column #1 widget area', 'motospeed' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); register_sidebar( array ( 'name' => __( 'Homepage Column #2', 'motospeed' ), 'id' => 'homepage-column-2-widget-area', 'description' => __( 'The Homepage Column #2 widget area', 'motospeed' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); register_sidebar( array ( 'name' => __( 'Homepage Column #3', 'motospeed' ), 'id' => 'homepage-column-3-widget-area', 'description' => __( 'The Homepage Column #3 widget area', 'motospeed' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); // Register Footer Column #1 register_sidebar( array ( 'name' => __( 'Footer Column #1', 'motospeed' ), 'id' => 'footer-column-1-widget-area', 'description' => __( 'The Footer Column #1 widget area', 'motospeed' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); // Register Footer Column #2 register_sidebar( array ( 'name' => __( 'Footer Column #2', 'motospeed' ), 'id' => 'footer-column-2-widget-area', 'description' => __( 'The Footer Column #2 widget area', 'motospeed' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); // Register Footer Column #3 register_sidebar( array ( 'name' => __( 'Footer Column #3', 'motospeed' ), 'id' => 'footer-column-3-widget-area', 'description' => __( 'The Footer Column #3 widget area', 'motospeed' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); } endif; // motospeed_widgets_init add_action( 'widgets_init', 'motospeed_widgets_init' ); if ( ! function_exists( 'motospeed_show_copyright_text' ) ) : /** * Displays the copyright text. */ function motospeed_show_copyright_text() { $footerText = esc_html( get_theme_mod('motospeed_footer_copyright', null) ); if ( !empty( $footerText ) ) { echo esc_html( $footerText ) . ' | '; } } endif; // motospeed_show_copyright_text if ( ! function_exists( 'motospeed_display_slider' ) ) : /** * Displays the Slider */ function motospeed_display_slider() { $allImages = array(); for ( $i = 1; $i <= 4; ++$i ) { $defaultSlideImage = get_template_directory_uri().'/images/slider/' . $i .'.jpg'; $slideImage = get_theme_mod( 'motospeed_slide'.$i.'_image', $defaultSlideImage ); if ( $slideImage != '' ) { $allImages[] = $slideImage; } } $allImagesCount = count($allImages); // skip displaying of slider if there are NO images if ($allImagesCount == 0) { return; } else if ($allImagesCount == 1) { $allImages[] = $allImages[0]; $allImages[] = $allImages[0]; $allImages[] = $allImages[0]; } else if ($allImagesCount == 2) { $allImages[] = $allImages[0]; $allImages[] = $allImages[1]; } else if ($allImagesCount == 3) { $allImages[] = $allImages[0]; } ?>
'; echo ''; echo ''; echo ''; ?>
'; echo ''; echo ''; echo ''; ?>
'; echo ''; echo ''; echo ''; ?>
'; echo ''; echo ''; echo ''; ?>