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' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'wptest' ), ) ); /* * 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( 'aside', 'image', 'video', 'quote', 'link', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'wptest_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // wptest_setup add_action( 'after_setup_theme', 'wptest_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 wptest_content_width() { $GLOBALS['content_width'] = apply_filters( 'wptest_content_width', 640 ); } add_action( 'after_setup_theme', 'wptest_content_width', 0 ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function wptest_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'wptest' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'wptest_widgets_init' ); /** * Enqueue scripts and styles. */ function wptest_scripts() { wp_enqueue_style( 'wptest-style', get_stylesheet_uri() ); wp_enqueue_script( 'wptest-bootstrap-js-cdn', get_template_directory_uri() . '/js/bootstrap.js', array('jquery'), '20120206', true ); wp_enqueue_style( 'wptest-fa-cdn' , get_template_directory_uri() . '/fonts/fontawesome.css' ); wp_enqueue_style( 'wptest-roboto-cdn' , 'http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic' ); wp_enqueue_script( 'wptest-modernizr' , get_template_directory_uri() . '/js/modernizr.js', array(), '20120101', false ); wp_enqueue_script( 'wptest-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true ); wp_enqueue_script( 'wptest-html5shiv', get_template_directory_uri() . '/js/html5shiv.js', array(), '20120101', false ); wp_enqueue_script( 'wptest-html5shiv-print', get_template_directory_uri() . '/js/html5shivprint.js', array(), '20120101', false ); wp_enqueue_script( 'wptest-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true ); wp_enqueue_style( 'wptest-hover-css', get_template_directory_uri() . '/inc/hover.css' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'wptest_scripts' ); function custom_scripts() { wp_enqueue_script( 'wptest-custom-script', get_stylesheet_directory_uri() . '/js/script.js', array( 'jquery' ) ); } add_action( 'wp_enqueue_scripts', 'custom_scripts' ); /** * 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'; /** * 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'; // Register Custom Navigation Walker require_once('navwalker.php'); // Social Navigation add_action( 'init', 'wpsocial' ); function wpsocial() { register_nav_menu( 'social', __( 'Social', 'wptest' ) ); } function new_excerpt_more($more) { return ''; } add_filter('excerpt_more', 'new_excerpt_more', 21 ); function the_excerpt_more_link( $excerpt ){ $post = get_post(); $excerpt .= 'Expand'; return $excerpt; } add_filter( 'the_excerpt', 'the_excerpt_more_link', 21 );