Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2014-11-19 21:28:25 +01:00
|
|
|
* Twenty Fifteen functions and definitions
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
*
|
|
|
|
* Set up the theme and provides some helper functions, which are used in the
|
|
|
|
* theme as custom template tags. Others are attached to action and filter
|
|
|
|
* hooks in WordPress to change core functionality.
|
|
|
|
*
|
|
|
|
* When using a child theme you can override certain functions (those wrapped
|
|
|
|
* in a function_exists() call) by defining them first in your child theme's
|
|
|
|
* functions.php file. The child theme's functions.php file is included before
|
|
|
|
* the parent theme's file, so the child theme functions would be used.
|
|
|
|
*
|
2019-07-26 00:46:55 +02:00
|
|
|
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
2019-04-01 13:56:52 +02:00
|
|
|
* @link https://developer.wordpress.org/themes/advanced-topics/child-themes/
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
*
|
|
|
|
* Functions that are not pluggable (not wrapped in function_exists()) are
|
|
|
|
* instead attached to a filter or action hook.
|
|
|
|
*
|
|
|
|
* For more information on hooks, actions, and filters,
|
2019-07-26 00:46:55 +02:00
|
|
|
* {@link https://developer.wordpress.org/plugins/}
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fifteen
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the content width based on the theme's design and stylesheet.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*/
|
|
|
|
if ( ! isset( $content_width ) ) {
|
|
|
|
$content_width = 660;
|
|
|
|
}
|
|
|
|
|
2014-10-29 23:14:22 +01:00
|
|
|
/**
|
|
|
|
* Twenty Fifteen only works in WordPress 4.1 or later.
|
|
|
|
*/
|
2014-10-30 12:57:22 +01:00
|
|
|
if ( version_compare( $GLOBALS['wp_version'], '4.1-alpha', '<' ) ) {
|
|
|
|
require get_template_directory() . '/inc/back-compat.php';
|
|
|
|
}
|
2014-10-29 23:14:22 +01:00
|
|
|
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
if ( ! function_exists( 'twentyfifteen_setup' ) ) :
|
2016-10-20 22:34:31 +02:00
|
|
|
/**
|
2017-12-01 00:11:00 +01:00
|
|
|
* Sets up theme defaults and registers support for various WordPress features.
|
2016-10-20 22:34:31 +02:00
|
|
|
*
|
2017-12-01 00:11:00 +01:00
|
|
|
* Note that this function is hooked into the after_setup_theme hook, which
|
|
|
|
* runs before the init hook. The init hook is too late for some features, such
|
|
|
|
* as indicating support for post thumbnails.
|
2016-10-20 22:34:31 +02:00
|
|
|
*
|
2017-12-01 00:11:00 +01:00
|
|
|
* @since Twenty Fifteen 1.0
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function twentyfifteen_setup() {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make theme available for translation.
|
|
|
|
* Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentyfifteen
|
|
|
|
* If you're building a theme based on twentyfifteen, use a find and replace
|
|
|
|
* to change 'twentyfifteen' to the name of your theme in all the template files
|
|
|
|
*/
|
|
|
|
load_theme_textdomain( 'twentyfifteen' );
|
|
|
|
|
|
|
|
// Add default posts and comments RSS feed links to head.
|
|
|
|
add_theme_support( 'automatic-feed-links' );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Let WordPress manage the document title.
|
|
|
|
* By adding theme support, we declare that this theme does not use a
|
|
|
|
* hard-coded <title> 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.
|
|
|
|
*
|
2019-04-07 07:23:51 +02:00
|
|
|
* See: https://developer.wordpress.org/reference/functions/add_theme_support/#post-thumbnails
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
add_theme_support( 'post-thumbnails' );
|
|
|
|
set_post_thumbnail_size( 825, 510, true );
|
|
|
|
|
|
|
|
// This theme uses wp_nav_menu() in two locations.
|
|
|
|
register_nav_menus(
|
|
|
|
array(
|
|
|
|
'primary' => __( 'Primary Menu', 'twentyfifteen' ),
|
|
|
|
'social' => __( 'Social Links Menu', 'twentyfifteen' ),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Switch default core markup for search form, comment form, and comments
|
|
|
|
* to output valid HTML5.
|
|
|
|
*/
|
|
|
|
add_theme_support(
|
2018-08-17 03:51:36 +02:00
|
|
|
'html5',
|
|
|
|
array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'search-form',
|
|
|
|
'comment-form',
|
|
|
|
'comment-list',
|
|
|
|
'gallery',
|
|
|
|
'caption',
|
2019-09-18 16:51:56 +02:00
|
|
|
'script',
|
|
|
|
'style',
|
2020-10-19 22:32:05 +02:00
|
|
|
'navigation-widgets',
|
2017-12-01 00:11:00 +01:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable support for Post Formats.
|
|
|
|
*
|
2019-07-26 00:46:55 +02:00
|
|
|
* See: https://wordpress.org/support/article/post-formats/
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
add_theme_support(
|
2018-08-17 03:51:36 +02:00
|
|
|
'post-formats',
|
|
|
|
array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'aside',
|
|
|
|
'image',
|
|
|
|
'video',
|
|
|
|
'quote',
|
|
|
|
'link',
|
|
|
|
'gallery',
|
|
|
|
'status',
|
|
|
|
'audio',
|
|
|
|
'chat',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable support for custom logo.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.5
|
|
|
|
*/
|
|
|
|
add_theme_support(
|
2018-08-17 03:51:36 +02:00
|
|
|
'custom-logo',
|
|
|
|
array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'height' => 248,
|
|
|
|
'width' => 248,
|
|
|
|
'flex-height' => true,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$color_scheme = twentyfifteen_get_color_scheme();
|
|
|
|
$default_color = trim( $color_scheme[0], '#' );
|
|
|
|
|
|
|
|
// Setup the WordPress core custom background feature.
|
|
|
|
|
|
|
|
add_theme_support(
|
2018-08-17 03:51:36 +02:00
|
|
|
'custom-background',
|
2020-07-01 15:52:01 +02:00
|
|
|
/**
|
2020-08-11 02:34:08 +02:00
|
|
|
* Filters Twenty Fifteen custom-background support arguments.
|
2020-07-01 15:52:01 +02:00
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*
|
|
|
|
* @param array $args {
|
|
|
|
* An array of custom-background support arguments.
|
|
|
|
*
|
|
|
|
* @type string $default-color Default color of the background.
|
|
|
|
* @type string $default-attachment Default attachment of the background.
|
|
|
|
* }
|
|
|
|
*/
|
2018-08-17 03:51:36 +02:00
|
|
|
apply_filters(
|
|
|
|
'twentyfifteen_custom_background_args',
|
|
|
|
array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'default-color' => $default_color,
|
|
|
|
'default-attachment' => 'fixed',
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This theme styles the visual editor to resemble the theme style,
|
|
|
|
* specifically font, colors, icons, and column width.
|
|
|
|
*/
|
|
|
|
add_editor_style( array( 'css/editor-style.css', 'genericons/genericons.css', twentyfifteen_fonts_url() ) );
|
|
|
|
|
2018-12-14 03:13:38 +01:00
|
|
|
// Load regular editor styles into the new block-based editor.
|
|
|
|
add_theme_support( 'editor-styles' );
|
|
|
|
|
|
|
|
// Load default block styles.
|
|
|
|
add_theme_support( 'wp-block-styles' );
|
|
|
|
|
2018-12-17 04:07:04 +01:00
|
|
|
// Add support for responsive embeds.
|
|
|
|
add_theme_support( 'responsive-embeds' );
|
|
|
|
|
2018-12-14 03:13:38 +01:00
|
|
|
// Add support for custom color scheme.
|
|
|
|
add_theme_support(
|
|
|
|
'editor-color-palette',
|
|
|
|
array(
|
|
|
|
array(
|
|
|
|
'name' => __( 'Dark Gray', 'twentyfifteen' ),
|
|
|
|
'slug' => 'dark-gray',
|
|
|
|
'color' => '#111',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => __( 'Light Gray', 'twentyfifteen' ),
|
|
|
|
'slug' => 'light-gray',
|
|
|
|
'color' => '#f1f1f1',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => __( 'White', 'twentyfifteen' ),
|
|
|
|
'slug' => 'white',
|
|
|
|
'color' => '#fff',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => __( 'Yellow', 'twentyfifteen' ),
|
|
|
|
'slug' => 'yellow',
|
|
|
|
'color' => '#f4ca16',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => __( 'Dark Brown', 'twentyfifteen' ),
|
|
|
|
'slug' => 'dark-brown',
|
|
|
|
'color' => '#352712',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => __( 'Medium Pink', 'twentyfifteen' ),
|
|
|
|
'slug' => 'medium-pink',
|
|
|
|
'color' => '#e53b51',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => __( 'Light Pink', 'twentyfifteen' ),
|
|
|
|
'slug' => 'light-pink',
|
|
|
|
'color' => '#ffe5d1',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => __( 'Dark Purple', 'twentyfifteen' ),
|
|
|
|
'slug' => 'dark-purple',
|
|
|
|
'color' => '#2e2256',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => __( 'Purple', 'twentyfifteen' ),
|
|
|
|
'slug' => 'purple',
|
|
|
|
'color' => '#674970',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => __( 'Blue Gray', 'twentyfifteen' ),
|
|
|
|
'slug' => 'blue-gray',
|
|
|
|
'color' => '#22313f',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => __( 'Bright Blue', 'twentyfifteen' ),
|
|
|
|
'slug' => 'bright-blue',
|
|
|
|
'color' => '#55c3dc',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'name' => __( 'Light Blue', 'twentyfifteen' ),
|
|
|
|
'slug' => 'light-blue',
|
|
|
|
'color' => '#e9f2f9',
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
// Indicate widget sidebars can use selective refresh in the Customizer.
|
|
|
|
add_theme_support( 'customize-selective-refresh-widgets' );
|
|
|
|
}
|
2020-01-29 01:45:18 +01:00
|
|
|
endif; // twentyfifteen_setup()
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
add_action( 'after_setup_theme', 'twentyfifteen_setup' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register widget area.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*
|
2019-07-26 00:46:55 +02:00
|
|
|
* @link https://developer.wordpress.org/reference/functions/register_sidebar/
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
*/
|
|
|
|
function twentyfifteen_widgets_init() {
|
2017-12-01 00:11:00 +01:00
|
|
|
register_sidebar(
|
|
|
|
array(
|
|
|
|
'name' => __( 'Widget Area', 'twentyfifteen' ),
|
|
|
|
'id' => 'sidebar-1',
|
|
|
|
'description' => __( 'Add widgets here to appear in your sidebar.', 'twentyfifteen' ),
|
|
|
|
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
|
|
|
|
'after_widget' => '</aside>',
|
|
|
|
'before_title' => '<h2 class="widget-title">',
|
|
|
|
'after_title' => '</h2>',
|
|
|
|
)
|
|
|
|
);
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
}
|
|
|
|
add_action( 'widgets_init', 'twentyfifteen_widgets_init' );
|
|
|
|
|
|
|
|
if ( ! function_exists( 'twentyfifteen_fonts_url' ) ) :
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* Register Google fonts for Twenty Fifteen.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*
|
|
|
|
* @return string Google fonts URL for the theme.
|
2015-02-22 14:43:24 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function twentyfifteen_fonts_url() {
|
|
|
|
$fonts_url = '';
|
|
|
|
$fonts = array();
|
|
|
|
$subsets = 'latin,latin-ext';
|
|
|
|
|
|
|
|
/*
|
2019-09-03 02:41:05 +02:00
|
|
|
* translators: If there are characters in your language that are not supported
|
2017-12-01 00:11:00 +01:00
|
|
|
* by Noto Sans, translate this to 'off'. Do not translate into your own language.
|
|
|
|
*/
|
|
|
|
if ( 'off' !== _x( 'on', 'Noto Sans font: on or off', 'twentyfifteen' ) ) {
|
|
|
|
$fonts[] = 'Noto Sans:400italic,700italic,400,700';
|
|
|
|
}
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/*
|
2019-09-03 02:41:05 +02:00
|
|
|
* translators: If there are characters in your language that are not supported
|
2017-12-01 00:11:00 +01:00
|
|
|
* by Noto Serif, translate this to 'off'. Do not translate into your own language.
|
|
|
|
*/
|
|
|
|
if ( 'off' !== _x( 'on', 'Noto Serif font: on or off', 'twentyfifteen' ) ) {
|
|
|
|
$fonts[] = 'Noto Serif:400italic,700italic,400,700';
|
|
|
|
}
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/*
|
2019-09-03 02:41:05 +02:00
|
|
|
* translators: If there are characters in your language that are not supported
|
2017-12-01 00:11:00 +01:00
|
|
|
* by Inconsolata, translate this to 'off'. Do not translate into your own language.
|
|
|
|
*/
|
|
|
|
if ( 'off' !== _x( 'on', 'Inconsolata font: on or off', 'twentyfifteen' ) ) {
|
|
|
|
$fonts[] = 'Inconsolata:400,700';
|
|
|
|
}
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/*
|
2019-09-03 02:41:05 +02:00
|
|
|
* translators: To add an additional character subset specific to your language,
|
2017-12-01 00:11:00 +01:00
|
|
|
* translate this to 'greek', 'cyrillic', 'devanagari' or 'vietnamese'. Do not translate into your own language.
|
|
|
|
*/
|
|
|
|
$subset = _x( 'no-subset', 'Add new subset (greek, cyrillic, devanagari, vietnamese)', 'twentyfifteen' );
|
|
|
|
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( 'cyrillic' === $subset ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$subsets .= ',cyrillic,cyrillic-ext';
|
2020-05-16 20:42:12 +02:00
|
|
|
} elseif ( 'greek' === $subset ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$subsets .= ',greek,greek-ext';
|
2020-05-16 20:42:12 +02:00
|
|
|
} elseif ( 'devanagari' === $subset ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$subsets .= ',devanagari';
|
2020-05-16 20:42:12 +02:00
|
|
|
} elseif ( 'vietnamese' === $subset ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$subsets .= ',vietnamese';
|
|
|
|
}
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $fonts ) {
|
|
|
|
$fonts_url = add_query_arg(
|
|
|
|
array(
|
2019-05-31 12:10:54 +02:00
|
|
|
'family' => urlencode( implode( '|', $fonts ) ),
|
|
|
|
'subset' => urlencode( $subsets ),
|
|
|
|
'display' => urlencode( 'fallback' ),
|
2018-08-17 03:51:36 +02:00
|
|
|
),
|
|
|
|
'https://fonts.googleapis.com/css'
|
2017-12-01 00:11:00 +01:00
|
|
|
);
|
|
|
|
}
|
2014-12-12 19:26:24 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return $fonts_url;
|
|
|
|
}
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
endif;
|
|
|
|
|
2015-01-16 00:10:22 +01:00
|
|
|
/**
|
|
|
|
* JavaScript Detection.
|
|
|
|
*
|
|
|
|
* Adds a `js` class to the root `<html>` element when JavaScript is detected.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.1
|
|
|
|
*/
|
|
|
|
function twentyfifteen_javascript_detection() {
|
|
|
|
echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n";
|
|
|
|
}
|
|
|
|
add_action( 'wp_head', 'twentyfifteen_javascript_detection', 0 );
|
|
|
|
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
/**
|
|
|
|
* Enqueue scripts and styles.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*/
|
|
|
|
function twentyfifteen_scripts() {
|
|
|
|
// Add custom fonts, used in the main stylesheet.
|
|
|
|
wp_enqueue_style( 'twentyfifteen-fonts', twentyfifteen_fonts_url(), array(), null );
|
|
|
|
|
|
|
|
// Add Genericons, used in the main stylesheet.
|
2020-12-07 16:55:05 +01:00
|
|
|
wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '20201208' );
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
|
|
|
|
// Load our main stylesheet.
|
2020-12-07 16:55:05 +01:00
|
|
|
wp_enqueue_style( 'twentyfifteen-style', get_stylesheet_uri(), array(), '20201208' );
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
|
2018-12-14 03:13:38 +01:00
|
|
|
// Theme block stylesheet.
|
2019-08-08 03:25:58 +02:00
|
|
|
wp_enqueue_style( 'twentyfifteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentyfifteen-style' ), '20190102' );
|
2018-12-14 03:13:38 +01:00
|
|
|
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
// Load the Internet Explorer specific stylesheet.
|
2019-08-08 03:25:58 +02:00
|
|
|
wp_enqueue_style( 'twentyfifteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfifteen-style' ), '20170916' );
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
wp_style_add_data( 'twentyfifteen-ie', 'conditional', 'lt IE 9' );
|
|
|
|
|
|
|
|
// Load the Internet Explorer 7 specific stylesheet.
|
2019-08-08 03:25:58 +02:00
|
|
|
wp_enqueue_style( 'twentyfifteen-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'twentyfifteen-style' ), '20141210' );
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
wp_style_add_data( 'twentyfifteen-ie7', 'conditional', 'lt IE 8' );
|
|
|
|
|
2019-08-08 03:29:58 +02:00
|
|
|
wp_enqueue_script( 'twentyfifteen-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20141028', true );
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
|
|
|
|
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
|
|
|
|
wp_enqueue_script( 'comment-reply' );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( is_singular() && wp_attachment_is_image() ) {
|
2019-08-08 03:29:58 +02:00
|
|
|
wp_enqueue_script( 'twentyfifteen-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20141210' );
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
}
|
|
|
|
|
2019-08-08 03:29:58 +02:00
|
|
|
wp_enqueue_script( 'twentyfifteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20171218', true );
|
2017-12-01 00:11:00 +01:00
|
|
|
wp_localize_script(
|
2018-08-17 03:51:36 +02:00
|
|
|
'twentyfifteen-script',
|
|
|
|
'screenReaderText',
|
|
|
|
array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'expand' => '<span class="screen-reader-text">' . __( 'expand child menu', 'twentyfifteen' ) . '</span>',
|
|
|
|
'collapse' => '<span class="screen-reader-text">' . __( 'collapse child menu', 'twentyfifteen' ) . '</span>',
|
|
|
|
)
|
|
|
|
);
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
}
|
|
|
|
add_action( 'wp_enqueue_scripts', 'twentyfifteen_scripts' );
|
|
|
|
|
2018-12-14 03:13:38 +01:00
|
|
|
/**
|
2018-12-19 04:30:41 +01:00
|
|
|
* Enqueue styles for the block-based editor.
|
2018-12-14 03:13:38 +01:00
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 2.1
|
|
|
|
*/
|
|
|
|
function twentyfifteen_block_editor_styles() {
|
|
|
|
// Block styles.
|
2020-12-07 16:55:05 +01:00
|
|
|
wp_enqueue_style( 'twentyfifteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20201208' );
|
2018-12-14 03:13:38 +01:00
|
|
|
// Add custom fonts.
|
|
|
|
wp_enqueue_style( 'twentyfifteen-fonts', twentyfifteen_fonts_url(), array(), null );
|
|
|
|
}
|
|
|
|
add_action( 'enqueue_block_editor_assets', 'twentyfifteen_block_editor_styles' );
|
|
|
|
|
|
|
|
|
2016-10-23 03:56:32 +02:00
|
|
|
/**
|
|
|
|
* Add preconnect for Google Fonts.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.7
|
|
|
|
*
|
|
|
|
* @param array $urls URLs to print for resource hints.
|
|
|
|
* @param string $relation_type The relation type the URLs are printed.
|
|
|
|
* @return array URLs to print for resource hints.
|
|
|
|
*/
|
|
|
|
function twentyfifteen_resource_hints( $urls, $relation_type ) {
|
|
|
|
if ( wp_style_is( 'twentyfifteen-fonts', 'queue' ) && 'preconnect' === $relation_type ) {
|
|
|
|
if ( version_compare( $GLOBALS['wp_version'], '4.7-alpha', '>=' ) ) {
|
|
|
|
$urls[] = array(
|
|
|
|
'href' => 'https://fonts.gstatic.com',
|
|
|
|
'crossorigin',
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$urls[] = 'https://fonts.gstatic.com';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $urls;
|
|
|
|
}
|
|
|
|
add_filter( 'wp_resource_hints', 'twentyfifteen_resource_hints', 10, 2 );
|
|
|
|
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
/**
|
2014-11-04 21:26:23 +01:00
|
|
|
* Add featured image as background image to post navigation elements.
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
2014-11-25 21:57:24 +01:00
|
|
|
*
|
|
|
|
* @see wp_add_inline_style()
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
*/
|
|
|
|
function twentyfifteen_post_nav_background() {
|
|
|
|
if ( ! is_single() ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true );
|
|
|
|
$next = get_adjacent_post( false, '', false );
|
|
|
|
$css = '';
|
|
|
|
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( is_attachment() && 'attachment' === $previous->post_type ) {
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $previous && has_post_thumbnail( $previous->ID ) ) {
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
$prevthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $previous->ID ), 'post-thumbnail' );
|
2017-12-01 00:11:00 +01:00
|
|
|
$css .= '
|
2014-11-03 22:40:23 +01:00
|
|
|
.post-navigation .nav-previous { background-image: url(' . esc_url( $prevthumb[0] ) . '); }
|
2014-11-27 21:34:24 +01:00
|
|
|
.post-navigation .nav-previous .post-title, .post-navigation .nav-previous a:hover .post-title, .post-navigation .nav-previous .meta-nav { color: #fff; }
|
2014-11-03 22:40:23 +01:00
|
|
|
.post-navigation .nav-previous a:before { background-color: rgba(0, 0, 0, 0.4); }
|
|
|
|
';
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( $next && has_post_thumbnail( $next->ID ) ) {
|
|
|
|
$nextthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $next->ID ), 'post-thumbnail' );
|
2017-12-01 00:11:00 +01:00
|
|
|
$css .= '
|
2015-01-16 00:03:26 +01:00
|
|
|
.post-navigation .nav-next { background-image: url(' . esc_url( $nextthumb[0] ) . '); border-top: 0; }
|
2014-11-27 21:34:24 +01:00
|
|
|
.post-navigation .nav-next .post-title, .post-navigation .nav-next a:hover .post-title, .post-navigation .nav-next .meta-nav { color: #fff; }
|
2014-11-03 22:40:23 +01:00
|
|
|
.post-navigation .nav-next a:before { background-color: rgba(0, 0, 0, 0.4); }
|
|
|
|
';
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
wp_add_inline_style( 'twentyfifteen-style', $css );
|
|
|
|
}
|
|
|
|
add_action( 'wp_enqueue_scripts', 'twentyfifteen_post_nav_background' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display descriptions in main navigation.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*
|
2020-06-20 13:22:10 +02:00
|
|
|
* @param string $item_output The menu item's starting HTML output.
|
|
|
|
* @param WP_Post $item Menu item data object.
|
|
|
|
* @param int $depth Depth of the menu. Used for padding.
|
|
|
|
* @param stdClass $args An object of wp_nav_menu() arguments.
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
* @return string Menu item with possible description.
|
|
|
|
*/
|
|
|
|
function twentyfifteen_nav_description( $item_output, $item, $depth, $args ) {
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( 'primary' === $args->theme_location && $item->description ) {
|
2014-11-11 20:02:22 +01:00
|
|
|
$item_output = str_replace( $args->link_after . '</a>', '<div class="menu-item-description">' . $item->description . '</div>' . $args->link_after . '</a>', $item_output );
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $item_output;
|
|
|
|
}
|
|
|
|
add_filter( 'walker_nav_menu_start_el', 'twentyfifteen_nav_description', 10, 4 );
|
|
|
|
|
2014-10-28 19:14:18 +01:00
|
|
|
/**
|
2014-11-04 21:26:23 +01:00
|
|
|
* Add a `screen-reader-text` class to the search form's submit button.
|
2014-10-28 19:14:18 +01:00
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*
|
2014-11-25 21:57:24 +01:00
|
|
|
* @param string $html Search form HTML.
|
|
|
|
* @return string Modified search form HTML.
|
2014-10-28 19:14:18 +01:00
|
|
|
*/
|
|
|
|
function twentyfifteen_search_form_modify( $html ) {
|
|
|
|
return str_replace( 'class="search-submit"', 'class="search-submit screen-reader-text"', $html );
|
|
|
|
}
|
|
|
|
add_filter( 'get_search_form', 'twentyfifteen_search_form_modify' );
|
|
|
|
|
2017-10-05 01:53:47 +02:00
|
|
|
/**
|
|
|
|
* Modifies tag cloud widget arguments to display all tags in the same font size
|
|
|
|
* and use list format for better accessibility.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.9
|
|
|
|
*
|
|
|
|
* @param array $args Arguments for tag cloud widget.
|
|
|
|
* @return array The filtered arguments for tag cloud widget.
|
|
|
|
*/
|
|
|
|
function twentyfifteen_widget_tag_cloud_args( $args ) {
|
|
|
|
$args['largest'] = 22;
|
|
|
|
$args['smallest'] = 8;
|
|
|
|
$args['unit'] = 'pt';
|
|
|
|
$args['format'] = 'list';
|
|
|
|
|
|
|
|
return $args;
|
|
|
|
}
|
|
|
|
add_filter( 'widget_tag_cloud_args', 'twentyfifteen_widget_tag_cloud_args' );
|
|
|
|
|
2019-08-02 04:33:57 +02:00
|
|
|
/**
|
|
|
|
* Prevents `author-bio.php` partial template from interfering with rendering
|
|
|
|
* an author archive of a user with the `bio` username.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 2.6
|
|
|
|
*
|
|
|
|
* @param string $template Template file.
|
|
|
|
* @return string Replacement template file.
|
|
|
|
*/
|
|
|
|
function twentyfifteen_author_bio_template( $template ) {
|
|
|
|
if ( is_author() ) {
|
|
|
|
$author = get_queried_object();
|
|
|
|
if ( $author instanceof WP_User && 'bio' === $author->user_nicename ) {
|
2019-08-02 05:08:55 +02:00
|
|
|
// Use author templates if exist, fall back to template hierarchy otherwise.
|
|
|
|
return locate_template( array( "author-{$author->ID}.php", 'author.php' ) );
|
2019-08-02 04:33:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $template;
|
|
|
|
}
|
2019-08-02 05:08:55 +02:00
|
|
|
add_filter( 'author_template', 'twentyfifteen_author_bio_template' );
|
2019-08-02 04:33:57 +02:00
|
|
|
|
2017-10-05 01:53:47 +02:00
|
|
|
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
/**
|
|
|
|
* Implement the Custom Header feature.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*/
|
|
|
|
require get_template_directory() . '/inc/custom-header.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom template tags for this theme.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*/
|
|
|
|
require get_template_directory() . '/inc/template-tags.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Customizer additions.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*/
|
|
|
|
require get_template_directory() . '/inc/customizer.php';
|
2021-05-28 19:21:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Block Patterns.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 3.0
|
|
|
|
*/
|
|
|
|
require get_template_directory() . '/inc/block-patterns.php';
|