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' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'attirant' ), ) ); add_image_size('featured-thumb','400','300', true); /* * 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', 'image', 'video', 'quote', 'link', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'attirant_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; add_action( 'after_setup_theme', 'attirant_setup' ); /** * 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 attirant_content_width() { $GLOBALS['content_width'] = apply_filters( 'attirant_content_width', 640 ); } add_action( 'after_setup_theme', 'attirant_content_width', 0 ); function attirant_fonts_url() { $fonts_url = ''; $muli = _x('on', 'Muli font: on or off', 'attirant'); $lato = _x('on', 'Lato font: on or off', 'attirant'); if ( 'off' !== $muli || 'off' !== $lato ) { $font_families = array(); if ('off' !== $muli ) { $font_families[] = 'Muli:300,400'; } if ('off' !== $lato ) { $font_families[] = 'Lato:300,400'; } $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; } function attirant_scripts_styles() { wp_enqueue_style( 'attirant-fonts', attirant_fonts_url(), array(), null ); } add_action( 'wp_enqueue_scripts', 'attirant_scripts_styles' ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function attirant_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'attirant' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '', 'before_title' => '