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( 'gridsby-gallery-thumb', 450 ); add_image_size( 'gridsby-gallery-full', 600 ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'gridsby' ), ) ); /* * 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', ) ); // Setup the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'gridsby_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); /** * Enable support for Post Formats */ add_theme_support( 'post-formats', array( 'image' ) ); } endif; // gridsby_setup add_action( 'after_setup_theme', 'gridsby_setup' ); /** * Load Google Fonts. */ function gridsby_load_fonts() { wp_register_style('googleFonts', '//fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600,700'); wp_enqueue_style( 'googleFonts'); } add_action('wp_print_styles', 'gridsby_load_fonts'); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function gridsby_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar', 'gridsby' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Home Widget', 'gridsby' ), 'id' => 'home-widget', 'description' => __( 'The widget area for your home page.', 'gridsby' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); //Register the sidebar widgets register_widget( 'gridsby_Video_Widget' ); register_widget( 'gridsby_Contact_Info' ); } add_action( 'widgets_init', 'gridsby_widgets_init' ); /** * Enqueue scripts and styles. */ function gridsby_scripts() { wp_enqueue_style( 'gridsby-style', get_stylesheet_uri() ); $headings_font = esc_html(get_theme_mod('headings_fonts')); $body_font = esc_html(get_theme_mod('body_fonts')); if( $headings_font ) { wp_enqueue_style( 'gridsby-headings-fonts', '//fonts.googleapis.com/css?family='. $headings_font ); } else { wp_enqueue_style( 'gridsby-open-sans', '//fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600,700'); } if( $body_font ) { wp_enqueue_style( 'gridsby-body-fonts', '//fonts.googleapis.com/css?family='. $body_font ); } else { wp_enqueue_style( 'gridsby-open-body', '//fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600,700'); } wp_enqueue_style( 'gridsby-font-awesome', get_template_directory_uri() . '/fonts/font-awesome.css' ); wp_enqueue_style( 'gridsby-grid-css', get_template_directory_uri() . '/css/grid.css' ); wp_enqueue_style( 'gridsby-menu-css', get_template_directory_uri() . '/css/jPushMenu.css' ); wp_enqueue_script( 'gridsby-images-loaded', get_template_directory_uri() . '/js/imagesloaded.pkgd.js', array(), false, false ); wp_enqueue_script( 'gridsby-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true ); wp_enqueue_script( 'gridsby-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true ); wp_enqueue_script( 'gridsby-classie', get_template_directory_uri() . '/js/classie.js', array(), false, true ); wp_enqueue_script( 'gridsby-helper', get_template_directory_uri() . '/js/helper.js', array(), false, true ); wp_enqueue_script( 'gridsby-pushMenu', get_template_directory_uri() . '/js/jPushMenu.js', array('jquery'), false, true ); wp_enqueue_script( 'gridsby-modernizr', get_template_directory_uri() . '/js/modernizr.custom.js', array(), false, false ); wp_enqueue_script( 'gridsby-share', get_template_directory_uri() . '/js/share.js', array(), false, true ); if ( is_page_template( 'page-home.php' ) || is_page_template( 'page-gallery.php' ) || is_page_template( 'page-full-gallery.php' ) ) { wp_enqueue_script( 'gridsby-grid3d', get_template_directory_uri() . '/js/grid3d.js', array(), false, true ); wp_enqueue_script( 'gridsby-masonry', get_template_directory_uri() . '/js/masonry.pkgd.js', array(), false, true ); wp_enqueue_script( 'gridsby-gridsby-gallery', get_template_directory_uri() . '/js/gridsby-gallery.js', array(), false, true ); } wp_enqueue_script( 'gridsby-scripts', get_template_directory_uri() . '/js/gridsby.scripts.js', array(), false, true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'gridsby_scripts' ); /** * Load html5shiv */ function gridsby_html5shiv() { echo '' . "\n"; } add_action( 'wp_head', 'gridsby_html5shiv' ); /** * Change the excerpt length */ function gridsby_excerpt_length( $length ) { $excerpt = esc_attr( get_theme_mod('exc_length', '30')); return $excerpt; } add_filter( 'excerpt_length', 'gridsby_excerpt_length', 999 ); /** * 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'; /** * Include additional custom admin panel features. */ require get_template_directory() . '/panel/functions-admin.php'; require get_template_directory() . '/panel/gridsby-admin_page.php'; /** * register your custom widgets */ require get_template_directory() . "/widgets/contact-info.php"; require get_template_directory() . "/widgets/video-widget.php"; /** * Google Fonts */ require get_template_directory() . '/inc/gfonts.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'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php';