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' ); add_image_size( 'allinonelight-thumbnail-avatar', 100, 100, true ); /* * 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( 'css/editor-style.css', get_template_directory_uri() . '/css/font-awesome.css', allinonelight_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', 'allinonelight' ), ) ); $defaults = array( 'flex-height' => false, 'flex-width' => false, 'header-text' => array( 'site-title', 'site-description' ), ); add_theme_support( 'custom-logo', $defaults ); } endif; // allinonelight_setup add_action( 'after_setup_theme', 'allinonelight_setup' ); if ( ! function_exists( 'allinonelight_fonts_url' ) ) : /** * Load google font url used in the allinonelight theme */ function allinonelight_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by PT Sans, translate this to 'off'. Do not translate * into your own language. */ $questrial = _x( 'on', 'PT Sans font: on or off', 'allinonelight' ); if ( 'off' !== $questrial ) { $font_families = array(); $font_families[] = 'PT Sans'; $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' ); } return $fonts_url; } endif; // allinonelight_fonts_url if ( ! function_exists( 'allinonelight_load_scripts' ) ) : /** * the main function to load scripts in the allinonelight 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 allinonelight_load_scripts() { // load main stylesheet. wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array( ) ); wp_enqueue_style( 'allinonelight-style', get_stylesheet_uri(), array() ); wp_enqueue_style( 'allinonelight-fonts', allinonelight_fonts_url(), array(), null ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Load Utilities JS Script wp_enqueue_script( 'allinonelight-utilities', get_template_directory_uri() . '/js/utilities.js', array( 'jquery' ) ); } endif; // allinonelight_load_scripts add_action( 'wp_enqueue_scripts', 'allinonelight_load_scripts' ); if ( ! function_exists( 'allinonelight_widgets_init' ) ) : /** * widgets-init action handler. Used to register widgets and register widget areas */ function allinonelight_widgets_init() { // Register Sidebar Widget. register_sidebar( array ( 'name' => __( 'Sidebar Widget Area', 'allinonelight'), 'id' => 'sidebar-widget-area', 'description' => __( 'The sidebar widget area', 'allinonelight'), 'before_widget' => '', 'after_widget' => '', 'before_title' => '