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 three locations. register_nav_menus( array( 'top-menu' => esc_html__( 'Top Menu', 'portage' ), 'primary-menu' => esc_html__( 'Primary Menu', 'portage' ), 'footer-menu' => esc_html__( 'Footer Menu', 'portage' ), ) ); /* * 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', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'portage_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // portage_setup add_action( 'after_setup_theme', 'portage_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 portage_content_width() { $GLOBALS['content_width'] = apply_filters( 'portage_content_width', 620 ); } add_action( 'after_setup_theme', 'portage_content_width', 0 ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function portage_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'portage' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '', 'after_widget' => '', 'before_title' => '
' . $item->description . '
'; $item_output .= ''; $item_output .= $args->after; $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args, $id ); } } */ /** * Implement the Custom Header feature. */ require get_template_directory() . '/functions/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/functions/template-tags.php'; /** * Customizer additions. */ require get_template_directory() . '/functions/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/functions/jetpack.php'; /** * Add our widget areas. */ require get_template_directory() . '/functions/widget-areas.php'; /** * Make our menus mobile. */ require get_template_directory() . '/functions/mobile-menus.php'; // Include our update script to update from private repo require 'update/puc.php'; $myUpdateChecker = Puc_v4_Factory::buildUpdateChecker( 'http://api.kjodle.net/?action=get_metadata&slug=portage', __FILE__, 'portage' );