The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
< ? php
/**
2013-09-20 21:24:09 +02:00
* Twenty Twelve functions and definitions
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*
2012-08-25 18:53:32 +02:00
* Sets up the theme and provides some helper functions , which are used
* in the theme as custom template tags . Others are attached to action and
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
* filter hooks in WordPress to change core functionality .
*
2019-04-01 13:56:52 +02:00
* 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 /
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*
* Functions that are not pluggable ( not wrapped in function_exists ()) are instead attached
* to a filter or action hook .
*
2019-07-26 00:46:55 +02:00
* For more information on hooks , actions , and filters , @ link https :// developer . wordpress . org / plugins /
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*
* @ package WordPress
* @ subpackage Twenty_Twelve
* @ since Twenty Twelve 1.0
*/
2013-10-09 22:39:09 +02:00
// Set up the content width value based on the theme's design and stylesheet.
2017-12-01 00:11:00 +01:00
if ( ! isset ( $content_width ) ) {
2012-07-13 02:27:29 +02:00
$content_width = 625 ;
2017-12-01 00:11:00 +01:00
}
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
/**
2013-09-20 21:24:09 +02:00
* Twenty Twelve setup .
*
2012-08-25 18:53:32 +02:00
* Sets up theme defaults and registers the various WordPress features that
* Twenty Twelve supports .
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*
* @ uses load_theme_textdomain () For translation / localization support .
2012-08-25 18:53:32 +02:00
* @ uses add_editor_style () To add a Visual Editor stylesheet .
* @ uses add_theme_support () To add support for post thumbnails , automatic feed links ,
2017-12-01 00:11:00 +01:00
* custom background , and post formats .
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
* @ uses register_nav_menu () To add support for navigation menus .
* @ uses set_post_thumbnail_size () To set a custom post thumbnail size .
*
* @ since Twenty Twelve 1.0
*/
function twentytwelve_setup () {
2013-10-09 22:39:09 +02:00
/*
2012-08-25 18:53:32 +02:00
* Makes Twenty Twelve available for translation .
*
2016-07-18 16:33:31 +02:00
* Translations can be filed at WordPress . org . See : https :// translate . wordpress . org / projects / wp - themes / twentytwelve
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
* If you ' re building a theme based on Twenty Twelve , use a find and replace
* to change 'twentytwelve' to the name of your theme in all the template files .
*/
2016-07-18 16:33:31 +02:00
load_theme_textdomain ( 'twentytwelve' );
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
2012-08-01 17:28:50 +02:00
// This theme styles the visual editor with editor-style.css to match the theme style.
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
add_editor_style ();
2018-12-14 02:55: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 02:55:38 +01:00
// Add support for custom color scheme.
add_theme_support (
'editor-color-palette' ,
array (
array (
'name' => __ ( 'Blue' , 'twentytwelve' ),
'slug' => 'blue' ,
'color' => '#21759b' ,
),
array (
'name' => __ ( 'Dark Gray' , 'twentytwelve' ),
'slug' => 'dark-gray' ,
'color' => '#444' ,
),
array (
'name' => __ ( 'Medium Gray' , 'twentytwelve' ),
'slug' => 'medium-gray' ,
'color' => '#9f9f9f' ,
),
array (
'name' => __ ( 'Light Gray' , 'twentytwelve' ),
'slug' => 'light-gray' ,
'color' => '#e6e6e6' ,
),
array (
'name' => __ ( 'White' , 'twentytwelve' ),
'slug' => 'white' ,
'color' => '#fff' ,
),
)
);
2012-08-25 18:53:32 +02:00
// Adds RSS feed links to <head> for posts and comments.
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
add_theme_support ( 'automatic-feed-links' );
2012-08-25 18:53:32 +02:00
// This theme supports a variety of post formats.
2012-09-04 07:00:19 +02:00
add_theme_support ( 'post-formats' , array ( 'aside' , 'image' , 'link' , 'quote' , 'status' ) );
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
// This theme uses wp_nav_menu() in one location.
register_nav_menu ( 'primary' , __ ( 'Primary Menu' , 'twentytwelve' ) );
2013-10-09 22:39:09 +02:00
/*
2013-09-20 21:24:09 +02:00
* This theme supports custom background color and image ,
* and here we also set up the default background color .
2012-08-25 18:53:32 +02:00
*/
2017-12-01 00:11:00 +01:00
add_theme_support (
2018-08-17 03:51:36 +02:00
'custom-background' ,
array (
2017-12-01 00:11:00 +01:00
'default-color' => 'e6e6e6' ,
)
);
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
2012-08-25 18:53:32 +02:00
// This theme uses a custom image size for featured images, displayed on "standard" posts.
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
add_theme_support ( 'post-thumbnails' );
2020-01-29 01:45:18 +01:00
set_post_thumbnail_size ( 624 , 9999 ); // Unlimited height, soft crop.
2016-03-21 22:59:29 +01:00
// Indicate widget sidebars can use selective refresh in the Customizer.
add_theme_support ( 'customize-selective-refresh-widgets' );
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
}
add_action ( 'after_setup_theme' , 'twentytwelve_setup' );
/**
2013-09-20 21:24:09 +02:00
* Add support for a custom header image .
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*/
2020-02-06 07:33:11 +01:00
require get_template_directory () . '/inc/custom-header.php' ;
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
2021-05-26 18:39:58 +02:00
/**
* Add block patterns .
*/
require get_template_directory () . '/inc/block-patterns.php' ;
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
/**
2013-09-20 21:24:09 +02:00
* Return the Google font stylesheet URL if available .
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*
2013-03-15 18:09:12 +01:00
* The use of Open Sans by default is localized . For languages that use
* characters not supported by the font , the font can be disabled .
*
* @ since Twenty Twelve 1.2
*
* @ return string Font stylesheet or empty string if disabled .
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*/
2013-03-15 18:09:12 +01:00
function twentytwelve_get_font_url () {
$font_url = '' ;
2012-09-27 09:30:27 +02:00
2019-09-03 02:41:05 +02:00
/*
* translators : If there are characters in your language that are not supported
2013-09-20 21:24:09 +02:00
* by Open Sans , translate this to 'off' . Do not translate into your own language .
*/
2012-09-27 19:44:54 +02:00
if ( 'off' !== _x ( 'on' , 'Open Sans font: on or off' , 'twentytwelve' ) ) {
2012-09-26 22:05:12 +02:00
$subsets = 'latin,latin-ext' ;
2012-09-27 09:30:27 +02:00
2019-09-03 02:41:05 +02:00
/*
* translators : To add an additional Open Sans character subset specific to your language ,
2013-09-20 21:24:09 +02:00
* translate this to 'greek' , 'cyrillic' or 'vietnamese' . Do not translate into your own language .
*/
2012-09-27 19:44:54 +02:00
$subset = _x ( 'no-subset' , 'Open Sans font: add new subset (greek, cyrillic, vietnamese)' , 'twentytwelve' );
2012-09-27 09:30:27 +02:00
2020-05-16 20:42:12 +02:00
if ( 'cyrillic' === $subset ) {
2012-09-27 09:30:27 +02:00
$subsets .= ',cyrillic,cyrillic-ext' ;
2020-05-16 20:42:12 +02:00
} elseif ( 'greek' === $subset ) {
2012-09-27 09:30:27 +02:00
$subsets .= ',greek,greek-ext' ;
2020-05-16 20:42:12 +02:00
} elseif ( 'vietnamese' === $subset ) {
2012-09-27 09:30:27 +02:00
$subsets .= ',vietnamese' ;
2017-12-01 00:11:00 +01:00
}
2012-09-26 22:05:12 +02:00
$query_args = array (
2019-06-13 01:33:50 +02:00
'family' => urlencode ( 'Open Sans:400italic,700italic,400,700' ),
2019-05-31 12:10:54 +02:00
'subset' => urlencode ( $subsets ),
'display' => urlencode ( 'fallback' ),
2012-09-26 22:05:12 +02:00
);
2017-12-01 00:11:00 +01:00
$font_url = add_query_arg ( $query_args , 'https://fonts.googleapis.com/css' );
2012-09-18 00:07:51 +02:00
}
2012-08-01 20:52:20 +02:00
2013-03-15 18:09:12 +01:00
return $font_url ;
}
/**
2016-02-25 13:53:27 +01:00
* Enqueue scripts and styles for front end .
2013-03-15 18:09:12 +01:00
*
* @ since Twenty Twelve 1.0
*/
function twentytwelve_scripts_styles () {
global $wp_styles ;
2013-10-09 22:39:09 +02:00
/*
2013-03-15 18:09:12 +01:00
* Adds JavaScript to pages with the comment form to support
* sites with threaded comments ( when in use ) .
*/
2017-12-01 00:11:00 +01:00
if ( is_singular () && comments_open () && get_option ( 'thread_comments' ) ) {
2013-03-15 18:09:12 +01:00
wp_enqueue_script ( 'comment-reply' );
2017-12-01 00:11:00 +01:00
}
2013-03-15 18:09:12 +01:00
2013-10-09 22:39:09 +02:00
// Adds JavaScript for handling the navigation menu hide-and-show behavior.
2019-08-08 03:29:58 +02:00
wp_enqueue_script ( 'twentytwelve-navigation' , get_template_directory_uri () . '/js/navigation.js' , array ( 'jquery' ), '20141205' , true );
2013-03-15 18:09:12 +01:00
$font_url = twentytwelve_get_font_url ();
2017-12-01 00:11:00 +01:00
if ( ! empty ( $font_url ) ) {
2013-03-15 18:09:12 +01:00
wp_enqueue_style ( 'twentytwelve-fonts' , esc_url_raw ( $font_url ), array (), null );
2017-12-01 00:11:00 +01:00
}
2013-03-15 18:09:12 +01:00
2013-10-09 22:39:09 +02:00
// Loads our main stylesheet.
2022-10-11 19:05:13 +02:00
wp_enqueue_style ( 'twentytwelve-style' , get_stylesheet_uri (), array (), '20221101' );
2012-10-12 00:07:06 +02:00
2018-12-14 02:55:38 +01:00
// Theme block stylesheet.
2019-08-08 03:25:58 +02:00
wp_enqueue_style ( 'twentytwelve-block-style' , get_template_directory_uri () . '/css/blocks.css' , array ( 'twentytwelve-style' ), '20190406' );
2018-12-14 02:55:38 +01:00
2013-10-09 22:39:09 +02:00
// Loads the Internet Explorer specific stylesheet.
2019-08-08 03:25:58 +02:00
wp_enqueue_style ( 'twentytwelve-ie' , get_template_directory_uri () . '/css/ie.css' , array ( 'twentytwelve-style' ), '20150214' );
2012-10-12 00:07:06 +02:00
$wp_styles -> add_data ( 'twentytwelve-ie' , 'conditional' , 'lt IE 9' );
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
}
add_action ( 'wp_enqueue_scripts' , 'twentytwelve_scripts_styles' );
2018-12-14 02:55:38 +01:00
/**
2018-12-19 04:30:41 +01:00
* Enqueue styles for the block - based editor .
2018-12-14 02:55:38 +01:00
*
* @ since Twenty Twelve 2.6
*/
function twentytwelve_block_editor_styles () {
// Block styles.
2022-10-11 19:05:13 +02:00
wp_enqueue_style ( 'twentytwelve-block-editor-style' , get_template_directory_uri () . '/css/editor-blocks.css' , array (), '20200713' );
2018-12-14 02:55:38 +01:00
// Add custom fonts.
wp_enqueue_style ( 'twentytwelve-fonts' , twentytwelve_get_font_url (), array (), null );
}
add_action ( 'enqueue_block_editor_assets' , 'twentytwelve_block_editor_styles' );
2016-10-23 03:56:32 +02:00
/**
* Add preconnect for Google Fonts .
*
* @ since Twenty Twelve 2.2
*
* @ 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 twentytwelve_resource_hints ( $urls , $relation_type ) {
if ( wp_style_is ( 'twentytwelve-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' , 'twentytwelve_resource_hints' , 10 , 2 );
2013-03-15 18:09:12 +01:00
/**
2013-09-20 21:24:09 +02:00
* Filter TinyMCE CSS path to include Google Fonts .
*
2013-03-15 18:09:12 +01:00
* Adds additional stylesheets to the TinyMCE editor if needed .
*
* @ uses twentytwelve_get_font_url () To get the Google Font stylesheet URL .
*
* @ since Twenty Twelve 1.2
*
* @ param string $mce_css CSS path to load in TinyMCE .
2013-09-20 21:24:09 +02:00
* @ return string Filtered CSS path .
2013-03-15 18:09:12 +01:00
*/
function twentytwelve_mce_css ( $mce_css ) {
$font_url = twentytwelve_get_font_url ();
2017-12-01 00:11:00 +01:00
if ( empty ( $font_url ) ) {
2013-03-15 18:09:12 +01:00
return $mce_css ;
2017-12-01 00:11:00 +01:00
}
2013-03-15 18:09:12 +01:00
2017-12-01 00:11:00 +01:00
if ( ! empty ( $mce_css ) ) {
2013-03-15 18:09:12 +01:00
$mce_css .= ',' ;
2017-12-01 00:11:00 +01:00
}
2013-03-15 18:09:12 +01:00
$mce_css .= esc_url_raw ( str_replace ( ',' , '%2C' , $font_url ) );
return $mce_css ;
}
add_filter ( 'mce_css' , 'twentytwelve_mce_css' );
2012-07-18 19:07:15 +02:00
/**
2013-09-20 21:24:09 +02:00
* Filter the page title .
*
2012-07-18 19:07:15 +02:00
* Creates a nicely formatted and more specific title element text
* for output in head of document , based on current view .
*
* @ since Twenty Twelve 1.0
2012-08-01 18:45:12 +02:00
*
* @ param string $title Default title text for current view .
* @ param string $sep Optional separator .
* @ return string Filtered title .
2012-07-18 19:07:15 +02:00
*/
2012-08-01 19:03:29 +02:00
function twentytwelve_wp_title ( $title , $sep ) {
2012-07-18 19:07:15 +02:00
global $paged , $page ;
2017-12-01 00:11:00 +01:00
if ( is_feed () ) {
2012-07-25 18:51:23 +02:00
return $title ;
2017-12-01 00:11:00 +01:00
}
2012-07-25 18:51:23 +02:00
2012-09-24 20:33:09 +02:00
// Add the site name.
2014-02-04 14:57:12 +01:00
$title .= get_bloginfo ( 'name' , 'display' );
2012-07-18 19:07:15 +02:00
2012-09-24 20:33:09 +02:00
// Add the site description for the home/front page.
2012-07-18 19:07:15 +02:00
$site_description = get_bloginfo ( 'description' , 'display' );
2017-12-01 00:11:00 +01:00
if ( $site_description && ( is_home () || is_front_page () ) ) {
2012-07-18 19:07:15 +02:00
$title = " $title $sep $site_description " ;
2017-12-01 00:11:00 +01:00
}
2012-07-18 19:07:15 +02:00
// Add a page number if necessary.
2017-12-01 00:11:00 +01:00
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404 () ) {
2019-09-03 02:41:05 +02:00
/* translators: %s: Page number. */
2012-08-08 18:59:15 +02:00
$title = " $title $sep " . sprintf ( __ ( 'Page %s' , 'twentytwelve' ), max ( $paged , $page ) );
2017-12-01 00:11:00 +01:00
}
2012-07-18 19:07:15 +02:00
return $title ;
}
add_filter ( 'wp_title' , 'twentytwelve_wp_title' , 10 , 2 );
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
/**
2013-09-20 21:24:09 +02:00
* Filter the page menu arguments .
*
2012-08-25 18:53:32 +02:00
* Makes our wp_nav_menu () fallback -- wp_page_menu () -- show a home link .
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*
* @ since Twenty Twelve 1.0
*/
function twentytwelve_page_menu_args ( $args ) {
2017-12-01 00:11:00 +01:00
if ( ! isset ( $args [ 'show_home' ] ) ) {
2012-11-02 17:52:53 +01:00
$args [ 'show_home' ] = true ;
2017-12-01 00:11:00 +01:00
}
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
return $args ;
}
add_filter ( 'wp_page_menu_args' , 'twentytwelve_page_menu_args' );
/**
2013-09-20 21:24:09 +02:00
* Register sidebars .
*
2012-09-18 19:28:36 +02:00
* Registers our main widget area and the front page widget areas .
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*
* @ since Twenty Twelve 1.0
*/
function twentytwelve_widgets_init () {
2017-12-01 00:11:00 +01:00
register_sidebar (
array (
'name' => __ ( 'Main Sidebar' , 'twentytwelve' ),
'id' => 'sidebar-1' ,
'description' => __ ( 'Appears on posts and pages except the optional Front Page template, which has its own widgets' , 'twentytwelve' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">' ,
'after_widget' => '</aside>' ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
)
);
register_sidebar (
array (
'name' => __ ( 'First Front Page Widget Area' , 'twentytwelve' ),
'id' => 'sidebar-2' ,
'description' => __ ( 'Appears when using the optional Front Page template with a page set as Static Front Page' , 'twentytwelve' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">' ,
'after_widget' => '</aside>' ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
)
);
register_sidebar (
array (
'name' => __ ( 'Second Front Page Widget Area' , 'twentytwelve' ),
'id' => 'sidebar-3' ,
'description' => __ ( 'Appears when using the optional Front Page template with a page set as Static Front Page' , 'twentytwelve' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">' ,
'after_widget' => '</aside>' ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
)
);
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
}
add_action ( 'widgets_init' , 'twentytwelve_widgets_init' );
2022-03-13 21:03:01 +01:00
if ( ! function_exists ( 'wp_get_list_item_separator' ) ) :
/**
* Retrieves the list item separator based on the locale .
*
* Added for backward compatibility to support pre - 6.0 . 0 WordPress versions .
*
* @ since 6.0 . 0
*/
function wp_get_list_item_separator () {
/* translators: Used between list items, there is a space after the comma. */
return __ ( ', ' , 'twentytwelve' );
}
endif ;
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
if ( ! function_exists ( 'twentytwelve_content_nav' ) ) :
2017-12-01 00:11:00 +01:00
/**
* Displays navigation to next / previous pages when applicable .
*
* @ since Twenty Twelve 1.0
*/
function twentytwelve_content_nav ( $html_id ) {
global $wp_query ;
if ( $wp_query -> max_num_pages > 1 ) : ?>
2021-11-01 22:47:13 +01:00
< nav id = " <?php echo esc_attr( $html_id ); ?> " class = " navigation " >
2017-12-01 00:11:00 +01:00
< h3 class = " assistive-text " >< ? php _e ( 'Post navigation' , 'twentytwelve' ); ?> </h3>
< div class = " nav-previous " >< ? php next_posts_link ( __ ( '<span class="meta-nav">←</span> Older posts' , 'twentytwelve' ) ); ?> </div>
< div class = " nav-next " >< ? php previous_posts_link ( __ ( 'Newer posts <span class="meta-nav">→</span>' , 'twentytwelve' ) ); ?> </div>
</ nav ><!-- . navigation -->
2018-08-17 03:51:36 +02:00
< ? php
2017-12-01 00:11:00 +01:00
endif ;
}
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
endif ;
if ( ! function_exists ( 'twentytwelve_comment' ) ) :
2017-12-01 00:11:00 +01:00
/**
* Template for comments and pingbacks .
*
* To override this walker in a child theme without modifying the comments template
* simply create your own twentytwelve_comment (), and that function will be used instead .
*
* Used as a callback by wp_list_comments () for displaying the comments .
*
2022-12-18 09:47:13 +01:00
* @ global WP_Post $post Global post object .
*
2017-12-01 00:11:00 +01:00
* @ since Twenty Twelve 1.0
*/
function twentytwelve_comment ( $comment , $args , $depth ) {
$GLOBALS [ 'comment' ] = $comment ;
switch ( $comment -> comment_type ) :
case 'pingback' :
case 'trackback' :
// Display trackbacks differently than normal comments.
2018-08-17 03:51:36 +02:00
?>
2017-12-01 00:11:00 +01:00
< li < ? php comment_class (); ?> id="comment-<?php comment_ID(); ?>">
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
< p >< ? php _e ( 'Pingback:' , 'twentytwelve' ); ?> <?php comment_author_link(); ?> <?php edit_comment_link( __( '(Edit)', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?></p>
2018-08-17 03:51:36 +02:00
< ? php
2017-12-01 00:11:00 +01:00
break ;
default :
// Proceed with normal comments.
global $post ;
2018-08-17 03:51:36 +02:00
?>
2017-12-01 00:11:00 +01:00
< li < ? php comment_class (); ?> id="li-comment-<?php comment_ID(); ?>">
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
< article id = " comment-<?php comment_ID(); ?> " class = " comment " >
< header class = " comment-meta comment-author vcard " >
< ? php
echo get_avatar ( $comment , 44 );
2017-12-01 00:11:00 +01:00
printf (
'<cite><b class="fn">%1$s</b> %2$s</cite>' ,
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
get_comment_author_link (),
// If current post author is also comment author, make it known visually.
2013-03-15 18:54:36 +01:00
( $comment -> user_id === $post -> post_author ) ? '<span>' . __ ( 'Post author' , 'twentytwelve' ) . '</span>' : ''
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
);
2017-12-01 00:11:00 +01:00
printf (
'<a href="%1$s"><time datetime="%2$s">%3$s</time></a>' ,
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
esc_url ( get_comment_link ( $comment -> comment_ID ) ),
get_comment_time ( 'c' ),
2019-09-03 02:41:05 +02:00
/* translators: 1: Date, 2: Time. */
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
sprintf ( __ ( '%1$s at %2$s' , 'twentytwelve' ), get_comment_date (), get_comment_time () )
);
2018-08-17 03:51:36 +02:00
?>
2017-12-01 00:11:00 +01:00
</ header ><!-- . comment - meta -->
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
2019-09-14 23:00:56 +02:00
< ? php
$commenter = wp_get_current_commenter ();
if ( $commenter [ 'comment_author_email' ] ) {
$moderation_note = __ ( 'Your comment is awaiting moderation.' , 'twentytwelve' );
} else {
2020-08-19 04:28:13 +02:00
$moderation_note = __ ( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.' , 'twentytwelve' );
2019-09-14 23:00:56 +02:00
}
?>
2017-12-01 00:11:00 +01:00
< ? php if ( '0' == $comment -> comment_approved ) : ?>
2019-09-14 23:00:56 +02:00
< p class = " comment-awaiting-moderation " >< ? php echo $moderation_note ; ?> </p>
< ? php endif ; ?>
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
2017-12-01 00:11:00 +01:00
< section class = " comment-content comment " >
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
< ? php comment_text (); ?>
< ? php edit_comment_link ( __ ( 'Edit' , 'twentytwelve' ), '<p class="edit-link">' , '</p>' ); ?>
2017-12-01 00:11:00 +01:00
</ section ><!-- . comment - content -->
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
2017-12-01 00:11:00 +01:00
< div class = " reply " >
< ? php
comment_reply_link (
array_merge (
2018-08-17 03:51:36 +02:00
$args ,
array (
2017-12-01 00:11:00 +01:00
'reply_text' => __ ( 'Reply' , 'twentytwelve' ),
'after' => ' <span>↓</span>' ,
'depth' => $depth ,
'max_depth' => $args [ 'max_depth' ],
)
)
);
2018-08-17 03:51:36 +02:00
?>
2017-12-01 00:11:00 +01:00
</ div ><!-- . reply -->
</ article ><!-- #comment-## -->
2018-08-17 03:51:36 +02:00
< ? php
2017-12-01 00:11:00 +01:00
break ;
2020-01-29 01:45:18 +01:00
endswitch ; // End comment_type check.
2017-12-01 00:11:00 +01:00
}
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
endif ;
if ( ! function_exists ( 'twentytwelve_entry_meta' ) ) :
2017-12-01 00:11:00 +01:00
/**
* Set up post entry meta .
*
* Prints HTML with meta information for current post : categories , tags , permalink , author , and date .
*
* Create your own twentytwelve_entry_meta () to override in a child theme .
*
* @ since Twenty Twelve 1.0
*/
function twentytwelve_entry_meta () {
2022-03-13 21:03:01 +01:00
$categories_list = get_the_category_list ( wp_get_list_item_separator () );
2017-12-01 00:11:00 +01:00
2022-03-13 21:03:01 +01:00
$tags_list = get_the_tag_list ( '' , wp_get_list_item_separator () );
2017-12-01 00:11:00 +01:00
$date = sprintf (
'<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>' ,
esc_url ( get_permalink () ),
esc_attr ( get_the_time () ),
esc_attr ( get_the_date ( 'c' ) ),
esc_html ( get_the_date () )
);
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
2017-12-01 00:11:00 +01:00
$author = sprintf (
'<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>' ,
esc_url ( get_author_posts_url ( get_the_author_meta ( 'ID' ) ) ),
2019-09-03 02:41:05 +02:00
/* translators: %s: Author display name. */
2017-12-01 00:11:00 +01:00
esc_attr ( sprintf ( __ ( 'View all posts by %s' , 'twentytwelve' ), get_the_author () ) ),
get_the_author ()
);
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
2020-06-02 19:05:13 +02:00
if ( $tags_list && ! is_wp_error ( $tags_list ) ) {
2019-09-03 02:41:05 +02:00
/* translators: 1: Category name, 2: Tag name, 3: Date, 4: Author display name. */
2017-12-01 00:11:00 +01:00
$utility_text = __ ( 'This entry was posted in %1$s and tagged %2$s on %3$s<span class="by-author"> by %4$s</span>.' , 'twentytwelve' );
} elseif ( $categories_list ) {
2019-09-03 02:41:05 +02:00
/* translators: 1: Category name, 3: Date, 4: Author display name. */
2017-12-01 00:11:00 +01:00
$utility_text = __ ( 'This entry was posted in %1$s on %3$s<span class="by-author"> by %4$s</span>.' , 'twentytwelve' );
} else {
2019-09-03 02:41:05 +02:00
/* translators: 3: Date, 4: Author display name. */
2017-12-01 00:11:00 +01:00
$utility_text = __ ( 'This entry was posted on %3$s<span class="by-author"> by %4$s</span>.' , 'twentytwelve' );
}
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
2017-12-01 00:11:00 +01:00
printf (
$utility_text ,
$categories_list ,
2020-06-02 19:05:13 +02:00
$tags_list ,
2017-12-01 00:11:00 +01:00
$date ,
$author
);
}
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
endif ;
/**
2013-09-20 21:24:09 +02:00
* Extend the default WordPress body classes .
*
2012-07-25 18:28:50 +02:00
* Extends the default WordPress body class to denote :
* 1. Using a full - width layout , when no active widgets in the sidebar
* or full - width template .
2012-09-24 18:57:42 +02:00
* 2. Front Page template : thumbnail in use and number of sidebars for
* widget areas .
2012-08-01 20:52:20 +02:00
* 3. White or empty background color to change the layout and spacing .
2012-09-24 18:57:42 +02:00
* 4. Custom fonts enabled .
* 5. Single or multiple authors .
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*
* @ since Twenty Twelve 1.0
2012-08-25 18:53:32 +02:00
*
2013-09-20 21:24:09 +02:00
* @ param array $classes Existing class values .
2012-08-25 18:53:32 +02:00
* @ return array Filtered class values .
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*/
function twentytwelve_body_class ( $classes ) {
2012-07-25 18:28:50 +02:00
$background_color = get_background_color ();
2013-03-01 18:14:59 +01:00
$background_image = get_background_image ();
2012-07-25 18:28:50 +02:00
2017-12-01 00:11:00 +01:00
if ( ! is_active_sidebar ( 'sidebar-1' ) || is_page_template ( 'page-templates/full-width.php' ) ) {
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
$classes [] = 'full-width' ;
2017-12-01 00:11:00 +01:00
}
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
2012-09-18 19:28:36 +02:00
if ( is_page_template ( 'page-templates/front-page.php' ) ) {
$classes [] = 'template-front-page' ;
2017-12-01 00:11:00 +01:00
if ( has_post_thumbnail () ) {
2012-08-28 19:12:10 +02:00
$classes [] = 'has-post-thumbnail' ;
2017-12-01 00:11:00 +01:00
}
if ( is_active_sidebar ( 'sidebar-2' ) && is_active_sidebar ( 'sidebar-3' ) ) {
2012-09-24 18:57:42 +02:00
$classes [] = 'two-sidebars' ;
2017-12-01 00:11:00 +01:00
}
2012-08-28 19:12:10 +02:00
}
2012-08-01 20:52:20 +02:00
2013-03-01 18:14:59 +01:00
if ( empty ( $background_image ) ) {
2017-12-01 00:11:00 +01:00
if ( empty ( $background_color ) ) {
2013-03-01 18:14:59 +01:00
$classes [] = 'custom-background-empty' ;
2020-04-05 05:02:11 +02:00
} elseif ( in_array ( $background_color , array ( 'fff' , 'ffffff' ), true ) ) {
2013-03-01 18:14:59 +01:00
$classes [] = 'custom-background-white' ;
2017-12-01 00:11:00 +01:00
}
2013-03-01 18:14:59 +01:00
}
2012-07-25 18:28:50 +02:00
2012-08-30 18:59:22 +02:00
// Enable custom font class only if the font CSS is queued to load.
2017-12-01 00:11:00 +01:00
if ( wp_style_is ( 'twentytwelve-fonts' , 'queue' ) ) {
2012-08-30 18:59:22 +02:00
$classes [] = 'custom-font-enabled' ;
2017-12-01 00:11:00 +01:00
}
2012-08-30 18:59:22 +02:00
2017-12-01 00:11:00 +01:00
if ( ! is_multi_author () ) {
2012-09-05 06:33:55 +02:00
$classes [] = 'single-author' ;
2017-12-01 00:11:00 +01:00
}
2012-09-05 06:33:55 +02:00
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
return $classes ;
}
add_filter ( 'body_class' , 'twentytwelve_body_class' );
/**
2013-09-20 21:24:09 +02:00
* Adjust content width in certain contexts .
*
2012-08-25 18:53:32 +02:00
* Adjusts content_width value for full - width and single image attachment
* templates , and when there are no active widgets in the sidebar .
2012-07-18 20:13:49 +02:00
*
* @ since Twenty Twelve 1.0
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*/
function twentytwelve_content_width () {
2012-08-28 19:16:18 +02:00
if ( is_page_template ( 'page-templates/full-width.php' ) || is_attachment () || ! is_active_sidebar ( 'sidebar-1' ) ) {
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
global $content_width ;
$content_width = 960 ;
}
}
2012-08-28 04:18:43 +02:00
add_action ( 'template_redirect' , 'twentytwelve_content_width' );
/**
2013-09-20 21:24:09 +02:00
* Register postMessage support .
*
* Add postMessage support for site title and description for the Customizer .
2012-08-28 04:18:43 +02:00
*
* @ since Twenty Twelve 1.0
*
2013-09-20 21:24:09 +02:00
* @ param WP_Customize_Manager $wp_customize Customizer object .
2012-08-28 04:18:43 +02:00
*/
function twentytwelve_customize_register ( $wp_customize ) {
2013-03-01 18:45:59 +01:00
$wp_customize -> get_setting ( 'blogname' ) -> transport = 'postMessage' ;
$wp_customize -> get_setting ( 'blogdescription' ) -> transport = 'postMessage' ;
$wp_customize -> get_setting ( 'header_textcolor' ) -> transport = 'postMessage' ;
2016-03-01 23:18:26 +01:00
if ( isset ( $wp_customize -> selective_refresh ) ) {
2017-12-01 00:11:00 +01:00
$wp_customize -> selective_refresh -> add_partial (
2018-08-17 03:51:36 +02:00
'blogname' ,
array (
2017-12-01 00:11:00 +01:00
'selector' => '.site-title > a' ,
'container_inclusive' => false ,
'render_callback' => 'twentytwelve_customize_partial_blogname' ,
)
);
$wp_customize -> selective_refresh -> add_partial (
2018-08-17 03:51:36 +02:00
'blogdescription' ,
array (
2017-12-01 00:11:00 +01:00
'selector' => '.site-description' ,
'container_inclusive' => false ,
'render_callback' => 'twentytwelve_customize_partial_blogdescription' ,
)
);
2016-03-01 23:18:26 +01:00
}
2012-08-28 04:18:43 +02:00
}
add_action ( 'customize_register' , 'twentytwelve_customize_register' );
2016-03-01 23:18:26 +01:00
/**
* Render the site title for the selective refresh partial .
*
* @ since Twenty Twelve 2.0
2020-06-16 23:07:14 +02:00
*
2016-03-01 23:18:26 +01:00
* @ see twentytwelve_customize_register ()
*
* @ return void
*/
function twentytwelve_customize_partial_blogname () {
bloginfo ( 'name' );
}
/**
* Render the site tagline for the selective refresh partial .
*
* @ since Twenty Twelve 2.0
2020-06-16 23:07:14 +02:00
*
2016-03-01 23:18:26 +01:00
* @ see twentytwelve_customize_register ()
*
* @ return void
*/
function twentytwelve_customize_partial_blogdescription () {
bloginfo ( 'description' );
}
2012-08-28 04:18:43 +02:00
/**
2020-12-06 03:21:07 +01:00
* Enqueue JavaScript postMessage handlers for the Customizer .
2013-09-20 21:24:09 +02:00
*
* Binds JS handlers to make the Customizer preview reload changes asynchronously .
2012-08-28 04:18:43 +02:00
*
* @ since Twenty Twelve 1.0
*/
function twentytwelve_customize_preview_js () {
2022-10-11 19:05:13 +02:00
wp_enqueue_script ( 'twentytwelve-customizer' , get_template_directory_uri () . '/js/theme-customizer.js' , array ( 'customize-preview' ), '20200516' , true );
2012-08-28 04:18:43 +02:00
}
add_action ( 'customize_preview_init' , 'twentytwelve_customize_preview_js' );
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 Twelve 2.4
*
* @ param array $args Arguments for tag cloud widget .
* @ return array The filtered arguments for tag cloud widget .
*/
function twentytwelve_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' , 'twentytwelve_widget_tag_cloud_args' );
2019-04-23 15:04:56 +02:00
if ( ! function_exists ( 'wp_body_open' ) ) :
/**
* Fire the wp_body_open action .
*
2020-01-29 01:45:18 +01:00
* Added for backward compatibility to support pre - 5.2 . 0 WordPress versions .
2019-04-23 15:04:56 +02:00
*
* @ since Twenty Twelve 3.0
*/
function wp_body_open () {
/**
* Triggered after the opening < body > tag .
*
* @ since Twenty Twelve 3.0
*/
do_action ( 'wp_body_open' );
}
endif ;