Importing Twenty Seventeen, our new default theme for 2017, set for 4.7.
With a focus on business sites, it will let you get down to business in style. Initial development occurred on GitHub. See: https://github.com/WordPress/twentyseventeen
Props melchoyce, laurelfulford, davidakennedy, grapplerulrich, manishsongirkar36, joefusco, smyoon315, b-07, rabmalin, mrahmadawais, hardeepasrani, implenton, acmethemes, claudiosanches, valeriutihai, pressionate, sgr33n, doughamlin, zodiac1978, tsl143, nikschavan, joshcummingsdesign, enodekciw, jordesign, patilvikasj, ryelle, mahesh901122, williampatton, juanfra, imnok, littlebigthing, mor10, samikeijonen, celloexpressions, akshayvinchurkar, davidmosterd, hiddenpearls, netweb, pratikchaskar, taggon, nukaga, ranh, yoavf, karmatosed, sandesh055, adammacias, noplanman, yogasukma, binarymoon, swapnilld, swissspidy, joyously, allancole, rianrietveld, sixhours, alex27, themeshaper, mapk, leobaiano.
See #38372.
Built from https://develop.svn.wordpress.org/trunk@38833
git-svn-id: http://core.svn.wordpress.org/trunk@38776 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-20 06:12:31 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Additional features to allow styling of the templates
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Seventeen
|
|
|
|
* @since 1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds custom classes to the array of body classes.
|
|
|
|
*
|
|
|
|
* @param array $classes Classes for the body element.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function twentyseventeen_body_classes( $classes ) {
|
|
|
|
// Add class of group-blog to blogs with more than 1 published author.
|
|
|
|
if ( is_multi_author() ) {
|
|
|
|
$classes[] = 'group-blog';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add class of hfeed to non-singular pages.
|
|
|
|
if ( ! is_singular() ) {
|
|
|
|
$classes[] = 'hfeed';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add class if we're viewing the Customizer for easier styling of theme options.
|
|
|
|
if ( is_customize_preview() ) {
|
|
|
|
$classes[] = 'twentyseventeen-customizer';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add class on front page.
|
|
|
|
if ( is_front_page() && 'posts' !== get_option( 'show_on_front' ) ) {
|
|
|
|
$classes[] = 'twentyseventeen-front-page';
|
|
|
|
}
|
|
|
|
|
2016-10-22 00:15:50 +02:00
|
|
|
// Add a class if there is a custom header.
|
|
|
|
if ( has_header_image() ) {
|
Importing Twenty Seventeen, our new default theme for 2017, set for 4.7.
With a focus on business sites, it will let you get down to business in style. Initial development occurred on GitHub. See: https://github.com/WordPress/twentyseventeen
Props melchoyce, laurelfulford, davidakennedy, grapplerulrich, manishsongirkar36, joefusco, smyoon315, b-07, rabmalin, mrahmadawais, hardeepasrani, implenton, acmethemes, claudiosanches, valeriutihai, pressionate, sgr33n, doughamlin, zodiac1978, tsl143, nikschavan, joshcummingsdesign, enodekciw, jordesign, patilvikasj, ryelle, mahesh901122, williampatton, juanfra, imnok, littlebigthing, mor10, samikeijonen, celloexpressions, akshayvinchurkar, davidmosterd, hiddenpearls, netweb, pratikchaskar, taggon, nukaga, ranh, yoavf, karmatosed, sandesh055, adammacias, noplanman, yogasukma, binarymoon, swapnilld, swissspidy, joyously, allancole, rianrietveld, sixhours, alex27, themeshaper, mapk, leobaiano.
See #38372.
Built from https://develop.svn.wordpress.org/trunk@38833
git-svn-id: http://core.svn.wordpress.org/trunk@38776 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-20 06:12:31 +02:00
|
|
|
$classes[] = 'has-header-image';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add class if sidebar is used.
|
|
|
|
if ( is_active_sidebar( 'sidebar-1' ) && ! is_page() ) {
|
|
|
|
$classes[] = 'has-sidebar';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add class for one or two column page layouts.
|
|
|
|
if ( is_page() ) {
|
|
|
|
if ( 'one-column' === get_theme_mod( 'page_options' ) ) {
|
|
|
|
$classes[] = 'page-one-column';
|
|
|
|
} else {
|
|
|
|
$classes[] = 'page-two-column';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add class if the site title and tagline is hidden.
|
|
|
|
if ( 'blank' === get_header_textcolor() ) {
|
|
|
|
$classes[] = 'title-tagline-hidden';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the colorscheme or the default if there isn't one.
|
|
|
|
$colors = twentyseventeen_sanitize_colorscheme( get_theme_mod( 'colorscheme', 'light' ) );
|
|
|
|
$classes[] = 'colors-' . $colors;
|
|
|
|
|
|
|
|
return $classes;
|
|
|
|
}
|
|
|
|
add_filter( 'body_class', 'twentyseventeen_body_classes' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Count our number of active panels.
|
|
|
|
*
|
|
|
|
* Primarily used to see if we have any panels active, duh.
|
|
|
|
*/
|
|
|
|
function twentyseventeen_panel_count() {
|
|
|
|
$panels = array( '1', '2', '3', '4' );
|
|
|
|
$panel_count = 0;
|
|
|
|
|
|
|
|
foreach ( $panels as $panel ) {
|
|
|
|
if ( get_theme_mod( 'panel_' . $panel ) ) {
|
|
|
|
$panel_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $panel_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks to see if we're on the homepage or not.
|
|
|
|
*/
|
|
|
|
function twentyseventeen_is_frontpage() {
|
|
|
|
return ( is_front_page() && ! is_home() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom Active Callback to check for page.
|
|
|
|
*/
|
|
|
|
function twentyseventeen_is_page() {
|
|
|
|
return ( is_page() );
|
|
|
|
}
|