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 http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); add_image_size( 'post-thumb', 800, 600, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Header Menu', 'beagency' ), 'secondary' => esc_html__( 'Footer Menu', 'beagency' ) ) ); /* * 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 http://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'image' ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'beagency_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // beagency_setup add_action( 'after_setup_theme', 'beagency_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 beagency_content_width() { $GLOBALS['content_width'] = apply_filters( 'beagency_content_width', 1140 ); } add_action( 'after_setup_theme', 'beagency_content_width', 0 ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function beagency_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'beagency' ), 'id' => 'sidebar-right', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'beagency_widgets_init' ); /** * Enqueue scripts and styles. */ function beagency_scripts() { wp_enqueue_style( 'beagency-bootstrap-style', get_template_directory_uri() . '/layouts/bootstrap.min.css', array(), '3.3.5' ); wp_enqueue_style( 'beagency-font-awesome-style', get_template_directory_uri() . '/layouts/font.awesome.min.css', array(), '4.4.0' ); wp_enqueue_style( 'beagency-magnific-popup-style', get_template_directory_uri() . '/layouts/magnific.popup.css', array(), '1.0.0' ); wp_enqueue_style( 'beagency-owl-carousel-style', get_template_directory_uri() . '/layouts/owl.carousel.min.css', array(), '2.0.0-beta.2.4' ); wp_enqueue_style( 'beagency-owl-carousel-theme-style', get_template_directory_uri() . '/layouts/owl.theme.default.min.css', array(), '2.0.0-beta.2.4' ); wp_enqueue_style( 'beagency-google-fonts', 'http://fonts.googleapis.com/css?family=Lato:300,400,400italic,600,700|Raleway:300,400,500,600,700s', array(), beagency_get_version() ); wp_enqueue_style( 'beagency-style', get_stylesheet_uri() ); wp_enqueue_style( 'beagency-responsive-style', get_template_directory_uri() . '/layouts/responsive.css', array(), beagency_get_version() ); wp_enqueue_script( 'beagency-jRespond-script', get_template_directory_uri() . '/js/jrespond.min.js', array(), '0.10', true ); wp_enqueue_script( 'beagency-superfish-script', get_template_directory_uri() . '/js/superfish.min.js', array(), '1.7.5', true ); wp_enqueue_script( 'beagency-isotope-script', get_template_directory_uri() . '/js/isotope.pkgd.min.js', array(), '2.2.0', true ); wp_enqueue_script( 'beagency-easing-script', get_template_directory_uri() . '/js/jquery.easing.min.js', array(), '1.3.2', true ); wp_enqueue_script( 'beagency-magnific-popup-script', get_template_directory_uri() . '/js/jquery.magnific.popup.min.js', array(), '1.0.0', true ); wp_enqueue_script( 'beagency-owl-carousel-script', get_template_directory_uri() . '/js/owl.carousel.min.js', array(), '2.0.0-beta.2.4', true ); wp_enqueue_script( 'beagency-smoothscroll-script', get_template_directory_uri() . '/js/smoothscroll.js', array(), '1.3.8', true ); wp_enqueue_script( 'beagency-infinitescroll-script', get_template_directory_uri() . '/js/jquery.infinitescroll.min.js', array(), '2.1.0', true ); wp_enqueue_script( 'beagency-app-script', get_template_directory_uri() . '/js/jquery.app.js', array(), beagency_get_version(), true ); // Localize the script with new data. wp_localize_script( 'beagency-app-script', 'app_vars', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'beagency_scripts' ); /** * Include the TGM_Plugin_Activation class. */ require_once get_template_directory() . '/inc/tgmpa/tgm-plugin-activation.php'; /** * Load Kirki Customizer Toolkit. */ require_once get_template_directory() . '/inc/kirki/kirki.php'; /** * Load Customizer configuration. */ require_once get_template_directory() . '/inc/kirki/config.php'; /** * Custom template tags for this theme. */ require_once get_template_directory() . '/inc/template-tags.php'; /** * Comments Callback. */ require_once get_template_directory() . '/inc/comments-callback.php'; /** * Custom functions that act independently of the theme templates. */ require_once get_template_directory() . '/inc/extras.php';