2010-02-07 17:16:26 +01:00
< ? php
2010-03-30 00:03:15 +02:00
/**
* TwentyTen functions and definitions
*
2010-03-30 02:05:17 +02:00
* Sets up the theme and provides some helper functions . Some helper functions
* are used in the theme as custom template tags . Others are attached to action and
* filter hooks in WordPress to change core functionality .
*
* The first function , twentyten_setup (), sets up the theme by registering support
* for various features in WordPress , such as post thumbnails , navigation menus , and the like .
*
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 /
2010-03-30 02:05:17 +02:00
*
* Functions that are not pluggable ( not wrapped in function_exists ()) are instead attached
* to a filter or action hook . The hook can be removed by using remove_action () or
2010-03-30 14:55:08 +02:00
* remove_filter () and you can attach your own function to the hook .
*
2010-04-02 06:45:22 +02:00
* We can remove the parent theme ' s hook only after it is attached , which means we need to
* wait until setting up the child theme :
2010-03-30 02:05:17 +02:00
*
* < code >
* add_action ( 'after_setup_theme' , 'my_child_theme_setup' );
* function my_child_theme_setup () {
2020-01-29 01:45:18 +01:00
* // We are providing our own filter for excerpt_length (or using the unfiltered value).
2010-03-30 14:55:08 +02:00
* remove_filter ( 'excerpt_length' , 'twentyten_excerpt_length' );
* ...
2010-03-30 02:05:17 +02:00
* }
* </ code >
*
2019-07-26 00:46:55 +02:00
* For more information on hooks , actions , and filters , see https :// developer . wordpress . org / plugins /.
2010-03-30 00:03:15 +02:00
*
* @ package WordPress
2010-05-16 19:10:21 +02:00
* @ subpackage Twenty_Ten
2010-05-16 22:53:36 +02:00
* @ since Twenty Ten 1.0
2010-03-30 00:03:15 +02:00
*/
2010-02-07 17:16:26 +01:00
2013-10-09 22:39:09 +02:00
/*
2010-03-30 02:05:17 +02:00
* Set the content width based on the theme ' s design and stylesheet .
2010-03-30 00:03:15 +02:00
*
2010-03-30 02:05:17 +02:00
* Used to set the width of images and content . Should be equal to the width the theme
* is designed for , generally via the style . css stylesheet .
2010-03-30 00:03:15 +02:00
*/
2017-12-01 00:11:00 +01:00
if ( ! isset ( $content_width ) ) {
2010-02-25 09:56:19 +01:00
$content_width = 640 ;
2017-12-01 00:11:00 +01:00
}
2010-02-14 22:39:20 +01:00
2013-10-09 22:39:09 +02:00
/* Tell WordPress to run twentyten_setup() when the 'after_setup_theme' hook is run. */
2010-03-30 02:05:17 +02:00
add_action ( 'after_setup_theme' , 'twentyten_setup' );
2017-12-01 00:11:00 +01:00
if ( ! function_exists ( 'twentyten_setup' ) ) :
/**
* Set up theme defaults and registers support for various WordPress features .
*
* 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 post thumbnails .
*
* To override twentyten_setup () in a child theme , add your own twentyten_setup to your child theme ' s
* functions . php file .
*
* @ uses add_theme_support () To add support for post thumbnails , custom headers and backgrounds , and automatic feed links .
* @ uses register_nav_menus () To add support for navigation menus .
* @ uses add_editor_style () To style the visual editor .
* @ uses load_theme_textdomain () For translation / localization support .
* @ uses register_default_headers () To register the default custom header images provided with the theme .
* @ uses set_post_thumbnail_size () To set a custom post thumbnail size .
*
* @ since Twenty Ten 1.0
2013-09-25 19:04:10 +02:00
*/
2017-12-01 00:11:00 +01:00
function twentyten_setup () {
// This theme styles the visual editor with editor-style.css to match the theme style.
add_editor_style ();
2010-03-30 00:03:15 +02:00
2018-12-14 02:46: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' );
// Add support for custom color scheme.
add_theme_support (
'editor-color-palette' ,
array (
array (
'name' => __ ( 'Blue' , 'twentyten' ),
'slug' => 'blue' ,
'color' => '#0066cc' ,
),
array (
'name' => __ ( 'Black' , 'twentyten' ),
'slug' => 'black' ,
'color' => '#000' ,
),
array (
'name' => __ ( 'Medium Gray' , 'twentyten' ),
'slug' => 'medium-gray' ,
'color' => '#666' ,
),
array (
'name' => __ ( 'Light Gray' , 'twentyten' ),
'slug' => 'light-gray' ,
'color' => '#f1f1f1' ,
),
array (
'name' => __ ( 'White' , 'twentyten' ),
'slug' => 'white' ,
'color' => '#fff' ,
),
)
);
2017-12-01 00:11:00 +01:00
// Post Format support. You can also use the legacy "gallery" or "asides" (note the plural) categories.
add_theme_support ( 'post-formats' , array ( 'aside' , 'gallery' ) );
2010-05-14 08:20:30 +02:00
2020-01-29 01:45:18 +01:00
// This theme uses post thumbnails.
2017-12-01 00:11:00 +01:00
add_theme_support ( 'post-thumbnails' );
2012-03-20 22:32:42 +01:00
2020-01-29 01:45:18 +01:00
// Add default posts and comments RSS feed links to head.
2017-12-01 00:11:00 +01:00
add_theme_support ( 'automatic-feed-links' );
2012-03-20 22:32:42 +01:00
2013-10-09 22:39:09 +02:00
/*
2017-12-01 00:11:00 +01:00
* Make theme available for translation .
2020-01-29 01:45:18 +01:00
* Translations can be filed in the / languages / directory .
2013-09-25 19:04:10 +02:00
*/
2017-12-01 00:11:00 +01:00
load_theme_textdomain ( 'twentyten' , get_template_directory () . '/languages' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus (
array (
'primary' => __ ( 'Primary Navigation' , 'twentyten' ),
)
);
// This theme allows users to set a custom background.
add_theme_support (
2018-08-17 03:51:36 +02:00
'custom-background' ,
array (
2017-12-01 00:11:00 +01:00
// Let WordPress know what our default background color is.
'default-color' => 'f1f1f1' ,
)
);
// The custom header business starts here.
$custom_header_support = array (
/*
* The default image to use .
* The % s is a placeholder for the theme template directory URI .
*/
'default-image' => '%s/images/headers/path.jpg' ,
// The height and width of our custom header.
/**
* Filter the Twenty Ten default header image width .
*
* @ since Twenty Ten 1.0
*
* @ param int The default header image width in pixels . Default 940.
*/
'width' => apply_filters ( 'twentyten_header_image_width' , 940 ),
/**
* Filter the Twenty Ten defaul header image height .
*
* @ since Twenty Ten 1.0
*
* @ param int The default header image height in pixels . Default 198.
*/
2019-07-05 07:21:56 +02:00
'height' => apply_filters ( 'twentyten_header_image_height' , 198 ),
2017-12-01 00:11:00 +01:00
// Support flexible heights.
'flex-height' => true ,
// Don't support text inside the header image.
'header-text' => false ,
// Callback for styling the header preview in the admin.
'admin-head-callback' => 'twentyten_admin_header_style' ,
);
add_theme_support ( 'custom-header' , $custom_header_support );
if ( ! function_exists ( 'get_custom_header' ) ) {
// This is all for compatibility with versions of WordPress prior to 3.4.
define ( 'HEADER_TEXTCOLOR' , '' );
define ( 'NO_HEADER_TEXT' , true );
define ( 'HEADER_IMAGE' , $custom_header_support [ 'default-image' ] );
define ( 'HEADER_IMAGE_WIDTH' , $custom_header_support [ 'width' ] );
define ( 'HEADER_IMAGE_HEIGHT' , $custom_header_support [ 'height' ] );
add_custom_image_header ( '' , $custom_header_support [ 'admin-head-callback' ] );
add_custom_background ();
}
2012-08-09 19:22:44 +02:00
2017-12-01 00:11:00 +01:00
/*
* We ' ll be using post thumbnails for custom header images on posts and pages .
* We want them to be 940 pixels wide by 198 pixels tall .
* Larger images will be auto - cropped to fit , smaller ones will be ignored . See header . php .
*/
set_post_thumbnail_size ( $custom_header_support [ 'width' ], $custom_header_support [ 'height' ], true );
2020-01-29 01:45:18 +01:00
// ...and thus ends the custom header business.
2017-12-01 00:11:00 +01:00
// Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.
register_default_headers (
array (
'berries' => array (
'url' => '%s/images/headers/berries.jpg' ,
'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg' ,
2019-09-03 02:41:05 +02:00
/* translators: Header image description. */
2017-12-01 00:11:00 +01:00
'description' => __ ( 'Berries' , 'twentyten' ),
),
'cherryblossom' => array (
'url' => '%s/images/headers/cherryblossoms.jpg' ,
'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg' ,
2019-09-03 02:41:05 +02:00
/* translators: Header image description. */
2017-12-01 00:11:00 +01:00
'description' => __ ( 'Cherry Blossoms' , 'twentyten' ),
),
'concave' => array (
'url' => '%s/images/headers/concave.jpg' ,
'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg' ,
2019-09-03 02:41:05 +02:00
/* translators: Header image description. */
2017-12-01 00:11:00 +01:00
'description' => __ ( 'Concave' , 'twentyten' ),
),
'fern' => array (
'url' => '%s/images/headers/fern.jpg' ,
'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg' ,
2019-09-03 02:41:05 +02:00
/* translators: Header image description. */
2017-12-01 00:11:00 +01:00
'description' => __ ( 'Fern' , 'twentyten' ),
),
'forestfloor' => array (
'url' => '%s/images/headers/forestfloor.jpg' ,
'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg' ,
2019-09-03 02:41:05 +02:00
/* translators: Header image description. */
2017-12-01 00:11:00 +01:00
'description' => __ ( 'Forest Floor' , 'twentyten' ),
),
'inkwell' => array (
'url' => '%s/images/headers/inkwell.jpg' ,
'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg' ,
2019-09-03 02:41:05 +02:00
/* translators: Header image description. */
2017-12-01 00:11:00 +01:00
'description' => __ ( 'Inkwell' , 'twentyten' ),
),
'path' => array (
'url' => '%s/images/headers/path.jpg' ,
'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg' ,
2019-09-03 02:41:05 +02:00
/* translators: Header image description. */
2017-12-01 00:11:00 +01:00
'description' => __ ( 'Path' , 'twentyten' ),
),
'sunset' => array (
'url' => '%s/images/headers/sunset.jpg' ,
'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg' ,
2019-09-03 02:41:05 +02:00
/* translators: Header image description. */
2017-12-01 00:11:00 +01:00
'description' => __ ( 'Sunset' , 'twentyten' ),
),
)
);
2012-06-04 16:43:19 +02:00
}
2010-04-02 02:54:48 +02:00
endif ;
2010-02-07 17:16:26 +01:00
2010-02-14 22:39:20 +01:00
if ( ! function_exists ( 'twentyten_admin_header_style' ) ) :
2017-12-01 00:11:00 +01:00
/**
* Style the header image displayed on the Appearance > Header admin panel .
*
* Referenced via add_custom_image_header () in twentyten_setup () .
*
* @ since Twenty Ten 1.0
*/
function twentyten_admin_header_style () {
2018-08-17 03:51:36 +02:00
?>
2017-12-01 00:11:00 +01:00
< style type = " text/css " id = " twentyten-admin-header-css " >
/* Shows the same border as on front end */
#headimg {
2010-06-10 20:26:53 +02:00
border - bottom : 1 px solid #000;
border - top : 4 px solid #000;
2017-12-01 00:11:00 +01:00
}
/* If header - text was supported , you would style the text with these selectors :
2010-06-10 20:26:53 +02:00
#headimg #name { }
#headimg #desc { }
2017-12-01 00:11:00 +01:00
*/
</ style >
2018-08-17 03:51:36 +02:00
< ? php
2017-12-01 00:11:00 +01:00
}
2010-02-14 22:39:20 +01:00
endif ;
2010-02-07 17:16:26 +01:00
2010-05-06 05:04:22 +02:00
/**
2013-09-25 19:04:10 +02:00
* Show a home link for our wp_nav_menu () fallback , wp_page_menu () .
2010-05-16 22:53:36 +02:00
*
* To override this in a child theme , remove the filter and optionally add
* your own function tied to the wp_page_menu_args filter hook .
*
* @ since Twenty Ten 1.0
2013-09-25 19:04:10 +02:00
*
* @ param array $args An optional array of arguments . @ see wp_page_menu ()
2010-05-06 05:04:22 +02:00
*/
2010-05-16 22:53:36 +02:00
function twentyten_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
}
2010-05-06 05:04:22 +02:00
return $args ;
}
2010-05-16 22:53:36 +02:00
add_filter ( 'wp_page_menu_args' , 'twentyten_page_menu_args' );
2010-05-06 05:04:22 +02:00
2010-03-30 00:03:15 +02:00
/**
2013-09-25 19:04:10 +02:00
* Set the post excerpt length to 40 characters .
2010-03-30 02:05:17 +02:00
*
* To override this length in a child theme , remove the filter and add your own
* function tied to the excerpt_length filter hook .
2010-03-30 00:03:15 +02:00
*
2010-05-16 22:53:36 +02:00
* @ since Twenty Ten 1.0
2013-09-25 19:04:10 +02:00
*
* @ param int $length The number of excerpt characters .
* @ return int The filtered number of excerpt characters .
2010-03-30 00:03:15 +02:00
*/
2010-02-14 22:39:20 +01:00
function twentyten_excerpt_length ( $length ) {
2010-02-07 17:16:26 +01:00
return 40 ;
}
2010-02-14 22:39:20 +01:00
add_filter ( 'excerpt_length' , 'twentyten_excerpt_length' );
2010-02-07 17:16:26 +01:00
2012-08-09 20:21:58 +02:00
if ( ! function_exists ( 'twentyten_continue_reading_link' ) ) :
2017-12-01 00:11:00 +01:00
/**
* Return a " Continue Reading " link for excerpts .
*
* @ since Twenty Ten 1.0
*
* @ return string " Continue Reading " link .
*/
function twentyten_continue_reading_link () {
return ' <a href="' . get_permalink () . '">' . __ ( 'Continue reading <span class="meta-nav">→</span>' , 'twentyten' ) . '</a>' ;
}
2012-08-09 20:21:58 +02:00
endif ;
2010-05-28 19:01:27 +02:00
/**
2013-09-25 19:04:10 +02:00
* Replace " [...] " with an ellipsis and twentyten_continue_reading_link () .
*
* " [...] " is appended to automatically generated excerpts .
2010-03-30 00:03:15 +02:00
*
2010-05-25 18:08:44 +02:00
* To override this in a child theme , remove the filter and add your own
2010-03-30 02:05:17 +02:00
* function tied to the excerpt_more filter hook .
2010-03-30 00:03:15 +02:00
*
2010-05-16 22:53:36 +02:00
* @ since Twenty Ten 1.0
2013-09-25 19:04:10 +02:00
*
* @ param string $more The Read More text .
* @ return string An ellipsis .
2010-05-25 18:08:44 +02:00
*/
function twentyten_auto_excerpt_more ( $more ) {
2014-11-01 04:40:25 +01:00
if ( ! is_admin () ) {
return ' …' . twentyten_continue_reading_link ();
}
return $more ;
2010-05-25 18:08:44 +02:00
}
add_filter ( 'excerpt_more' , 'twentyten_auto_excerpt_more' );
/**
2013-09-25 19:04:10 +02:00
* Add a pretty " Continue Reading " link to custom post excerpts .
2010-05-25 18:08:44 +02:00
*
* To override this link in a child theme , remove the filter and add your own
* function tied to the get_the_excerpt filter hook .
*
* @ since Twenty Ten 1.0
2013-09-25 19:04:10 +02:00
*
* @ param string $output The " Coninue Reading " link .
* @ return string Excerpt with a pretty " Continue Reading " link .
2010-03-30 00:03:15 +02:00
*/
2010-05-25 18:08:44 +02:00
function twentyten_custom_excerpt_more ( $output ) {
2014-11-01 04:40:25 +01:00
if ( has_excerpt () && ! is_attachment () && ! is_admin () ) {
2010-05-28 19:01:27 +02:00
$output .= twentyten_continue_reading_link ();
}
return $output ;
2010-02-07 17:16:26 +01:00
}
2010-05-25 18:08:44 +02:00
add_filter ( 'get_the_excerpt' , 'twentyten_custom_excerpt_more' );
2010-02-07 17:16:26 +01:00
2010-03-30 02:05:17 +02:00
/**
* Remove inline styles printed when the gallery shortcode is used .
*
2010-12-10 20:27:12 +01:00
* Galleries are styled by the theme in Twenty Ten ' s style . css . This is just
* a simple filter call that tells WordPress to not use the default styles .
*
2011-01-03 23:47:05 +01:00
* @ since Twenty Ten 1.2
2010-12-10 20:27:12 +01:00
*/
add_filter ( 'use_default_gallery_style' , '__return_false' );
/**
* Deprecated way to remove inline styles printed when the gallery shortcode is used .
*
* This function is no longer needed or used . Use the use_default_gallery_style
* filter instead , as seen above .
2010-03-30 02:05:17 +02:00
*
2010-05-16 22:53:36 +02:00
* @ since Twenty Ten 1.0
2011-01-03 23:47:05 +01:00
* @ deprecated Deprecated in Twenty Ten 1.2 for WordPress 3.1
2010-12-10 20:27:12 +01:00
*
2010-03-30 02:05:17 +02:00
* @ return string The gallery style filter , with the styles themselves removed .
*/
function twentyten_remove_gallery_css ( $css ) {
return preg_replace ( " #<style type='text/css'>(.*?)</style>#s " , '' , $css );
}
2020-01-29 01:45:18 +01:00
// Backward compatibility with WordPress 3.0.
2017-12-01 00:11:00 +01:00
if ( version_compare ( $GLOBALS [ 'wp_version' ], '3.1' , '<' ) ) {
2011-02-22 09:23:30 +01:00
add_filter ( 'gallery_style' , 'twentyten_remove_gallery_css' );
2017-12-01 00:11:00 +01:00
}
2010-03-30 02:05:17 +02:00
2010-02-14 22:39:20 +01:00
if ( ! function_exists ( 'twentyten_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 twentyten_comment (), and that function will be used instead .
*
* Used as a callback by wp_list_comments () for displaying the comments .
*
* @ since Twenty Ten 1.0
*
* @ param object $comment The comment object .
* @ param array $args An array of arguments . @ see get_comment_reply_link ()
* @ param int $depth The depth of the comment .
*/
function twentyten_comment ( $comment , $args , $depth ) {
$GLOBALS [ 'comment' ] = $comment ;
switch ( $comment -> comment_type ) :
case '' :
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(); ?>">
2010-02-07 17:16:26 +01:00
< div id = " comment-<?php comment_ID(); ?> " >
2012-08-09 19:22:44 +02:00
< div class = " comment-author vcard " >
< ? php echo get_avatar ( $comment , 40 ); ?>
2019-07-09 03:10:00 +02:00
< ? php
2019-09-03 02:41:05 +02:00
/* translators: %s: Author display name. */
2019-07-09 03:10:00 +02:00
printf ( __ ( '%s <span class="says">says:</span>' , 'twentyten' ), sprintf ( '<cite class="fn">%s</cite>' , get_comment_author_link () ) );
?>
2012-08-09 19:22:44 +02:00
</ div ><!-- . comment - author . vcard -->
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.' , 'twentyten' );
} else {
$moderation_note = __ ( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.' , 'twentyten' );
}
?>
< ? php if ( '0' == $comment -> comment_approved ) : ?>
< em class = " comment-awaiting-moderation " >< ? php echo $moderation_note ; ?> </em>
< br />
2012-08-09 19:22:44 +02:00
< ? php endif ; ?>
2010-02-07 17:16:26 +01:00
2012-08-09 19:22:44 +02:00
< div class = " comment-meta commentmetadata " >< a href = " <?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?> " >
< ? php
2019-09-03 02:41:05 +02:00
/* translators: 1: Date, 2: Time. */
2017-12-01 00:11:00 +01:00
printf ( __ ( '%1$s at %2$s' , 'twentyten' ), get_comment_date (), get_comment_time () );
2018-08-17 03:51:36 +02:00
?>
2017-12-01 00:11:00 +01:00
</ a >
< ? php
edit_comment_link ( __ ( '(Edit)' , 'twentyten' ), ' ' );
2018-08-17 03:51:36 +02:00
?>
2017-12-01 00:11:00 +01:00
</ div ><!-- . comment - meta . commentmetadata -->
2010-02-07 17:16:26 +01:00
2017-12-01 00:11:00 +01:00
< div class = " comment-body " >< ? php comment_text (); ?> </div>
2010-02-07 17:16:26 +01: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
'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 -->
</ div ><!-- #comment-## -->
2018-08-17 03:51:36 +02:00
< ? php
2017-12-01 00:11:00 +01:00
break ;
case 'pingback' :
case 'trackback' :
2018-08-17 03:51:36 +02:00
?>
2017-12-01 00:11:00 +01:00
< li class = " post pingback " >
2010-11-19 06:37:47 +01:00
< p >< ? php _e ( 'Pingback:' , 'twentyten' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' ); ?></p>
2018-08-17 03:51:36 +02:00
< ? php
2017-12-01 00:11:00 +01:00
break ;
endswitch ;
}
2010-02-14 22:39:20 +01:00
endif ;
2010-02-07 17:16:26 +01:00
2010-03-30 00:03:15 +02:00
/**
2010-03-30 02:05:17 +02:00
* Register widgetized areas , including two sidebars and four widget - ready columns in the footer .
2010-03-30 00:03:15 +02:00
*
2010-03-30 02:05:17 +02:00
* To override twentyten_widgets_init () in a child theme , remove the action hook and add your own
* function tied to the init hook .
2010-05-16 22:53:36 +02:00
*
* @ since Twenty Ten 1.0
2013-09-25 19:04:10 +02:00
*
* @ uses register_sidebar ()
2010-03-30 00:03:15 +02:00
*/
2010-02-14 02:00:22 +01:00
function twentyten_widgets_init () {
2010-05-21 20:56:27 +02:00
// Area 1, located at the top of the sidebar.
2017-12-01 00:11:00 +01:00
register_sidebar (
array (
'name' => __ ( 'Primary Widget Area' , 'twentyten' ),
'id' => 'primary-widget-area' ,
'description' => __ ( 'Add widgets here to appear in your sidebar.' , 'twentyten' ),
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => '</li>' ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
)
);
2010-02-08 19:02:23 +01:00
2010-05-21 20:56:27 +02:00
// Area 2, located below the Primary Widget Area in the sidebar. Empty by default.
2017-12-01 00:11:00 +01:00
register_sidebar (
array (
'name' => __ ( 'Secondary Widget Area' , 'twentyten' ),
'id' => 'secondary-widget-area' ,
'description' => __ ( 'An optional secondary widget area, displays below the primary widget area in your sidebar.' , 'twentyten' ),
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => '</li>' ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
)
);
2010-02-08 19:02:23 +01:00
2010-05-21 20:56:27 +02:00
// Area 3, located in the footer. Empty by default.
2017-12-01 00:11:00 +01:00
register_sidebar (
array (
'name' => __ ( 'First Footer Widget Area' , 'twentyten' ),
'id' => 'first-footer-widget-area' ,
'description' => __ ( 'An optional widget area for your site footer.' , 'twentyten' ),
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => '</li>' ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
)
);
2010-02-07 17:16:26 +01:00
2010-05-21 20:56:27 +02:00
// Area 4, located in the footer. Empty by default.
2017-12-01 00:11:00 +01:00
register_sidebar (
array (
'name' => __ ( 'Second Footer Widget Area' , 'twentyten' ),
'id' => 'second-footer-widget-area' ,
'description' => __ ( 'An optional widget area for your site footer.' , 'twentyten' ),
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => '</li>' ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
)
);
2010-02-07 17:16:26 +01:00
2010-05-21 20:56:27 +02:00
// Area 5, located in the footer. Empty by default.
2017-12-01 00:11:00 +01:00
register_sidebar (
array (
'name' => __ ( 'Third Footer Widget Area' , 'twentyten' ),
'id' => 'third-footer-widget-area' ,
'description' => __ ( 'An optional widget area for your site footer.' , 'twentyten' ),
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => '</li>' ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
)
);
2010-02-07 17:16:26 +01:00
2010-05-21 20:56:27 +02:00
// Area 6, located in the footer. Empty by default.
2017-12-01 00:11:00 +01:00
register_sidebar (
array (
'name' => __ ( 'Fourth Footer Widget Area' , 'twentyten' ),
'id' => 'fourth-footer-widget-area' ,
'description' => __ ( 'An optional widget area for your site footer.' , 'twentyten' ),
'before_widget' => '<li id="%1$s" class="widget-container %2$s">' ,
'after_widget' => '</li>' ,
'before_title' => '<h3 class="widget-title">' ,
'after_title' => '</h3>' ,
)
);
2010-02-14 22:39:20 +01:00
}
2010-05-16 22:53:36 +02:00
/** Register sidebars by running twentyten_widgets_init() on the widgets_init hook. */
add_action ( 'widgets_init' , 'twentyten_widgets_init' );
2010-04-04 01:33:52 +02:00
/**
2013-09-25 19:04:10 +02:00
* Remove the default styles that are packaged with the Recent Comments widget .
2010-05-16 22:53:36 +02:00
*
* To override this in a child theme , remove the filter and optionally add your own
* function tied to the widgets_init action hook .
*
2011-02-22 09:23:30 +01:00
* This function uses a filter ( show_recent_comments_widget_style ) new in WordPress 3.1
* to remove the default style . Using Twenty Ten 1.2 in WordPress 3.0 will show the styles ,
* but they won ' t have any effect on the widget in default Twenty Ten styling .
*
2010-05-16 22:53:36 +02:00
* @ since Twenty Ten 1.0
2010-04-04 01:33:52 +02:00
*/
function twentyten_remove_recent_comments_style () {
2010-11-21 14:55:11 +01:00
add_filter ( 'show_recent_comments_widget_style' , '__return_false' );
2010-04-04 01:33:52 +02:00
}
add_action ( 'widgets_init' , 'twentyten_remove_recent_comments_style' );
2010-05-03 21:16:47 +02:00
2010-05-16 22:53:36 +02:00
if ( ! function_exists ( 'twentyten_posted_on' ) ) :
2017-12-01 00:11:00 +01:00
/**
* Print HTML with meta information for the current post - date / time and author .
*
* @ since Twenty Ten 1.0
*/
function twentyten_posted_on () {
printf (
2019-09-03 02:41:05 +02:00
/* translators: 1: CSS classes, 2: Date, 3: Author display name. */
2017-12-01 00:11:00 +01:00
__ ( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s' , 'twentyten' ),
'meta-prep meta-prep-author' ,
sprintf (
'<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>' ,
get_permalink (),
esc_attr ( get_the_time () ),
get_the_date ()
),
sprintf (
'<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>' ,
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' , 'twentyten' ), get_the_author () ) ),
get_the_author ()
)
);
}
2010-05-16 22:53:36 +02:00
endif ;
2010-05-10 21:06:22 +02:00
2010-05-16 22:53:36 +02:00
if ( ! function_exists ( 'twentyten_posted_in' ) ) :
2017-12-01 00:11:00 +01:00
/**
* Print HTML with meta information for the current post ( category , tags and permalink ) .
*
* @ since Twenty Ten 1.0
*/
function twentyten_posted_in () {
// Retrieves tag list of current post, separated by commas.
$tag_list = get_the_tag_list ( '' , ', ' );
if ( $tag_list && ! is_wp_error ( $tag_list ) ) {
2019-09-03 02:41:05 +02:00
/* translators: 1: Category name, 2: Tag name, 3: Post permalink, 4: Post title. */
2017-12-01 00:11:00 +01:00
$posted_in = __ ( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.' , 'twentyten' );
} elseif ( is_object_in_taxonomy ( get_post_type (), 'category' ) ) {
2019-09-03 02:41:05 +02:00
/* translators: 1: Category name, 3: Post permalink, 4: Post title. */
2017-12-01 00:11:00 +01:00
$posted_in = __ ( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.' , 'twentyten' );
} else {
2019-09-03 02:41:05 +02:00
/* translators: 3: Post permalink, 4: Post title. */
2017-12-01 00:11:00 +01:00
$posted_in = __ ( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.' , 'twentyten' );
}
// Prints the string, replacing the placeholders.
printf (
$posted_in ,
get_the_category_list ( ', ' ),
$tag_list ,
get_permalink (),
the_title_attribute ( 'echo=0' )
);
2010-05-10 21:06:22 +02:00
}
2010-05-16 22:53:36 +02:00
endif ;
2013-03-27 21:37:34 +01:00
/**
2013-09-25 19:04:10 +02:00
* Retrieve the IDs for images in a gallery .
2013-03-27 21:37:34 +01:00
*
2013-09-25 19:04:10 +02:00
* @ uses get_post_galleries () First , if available . Falls back to shortcode parsing ,
* then as last option uses a get_posts () call .
2013-03-27 21:37:34 +01:00
*
* @ since Twenty Ten 1.6 .
*
* @ return array List of image IDs from the post gallery .
*/
function twentyten_get_gallery_images () {
$images = array ();
2013-05-07 23:57:49 +02:00
if ( function_exists ( 'get_post_galleries' ) ) {
$galleries = get_post_galleries ( get_the_ID (), false );
2017-12-01 00:11:00 +01:00
if ( isset ( $galleries [ 0 ][ 'ids' ] ) ) {
2015-01-22 01:42:44 +01:00
$images = explode ( ',' , $galleries [ 0 ][ 'ids' ] );
2017-12-01 00:11:00 +01:00
}
2013-03-27 21:37:34 +01:00
} else {
$pattern = get_shortcode_regex ();
preg_match ( " / $pattern /s " , get_the_content (), $match );
$atts = shortcode_parse_atts ( $match [ 3 ] );
2017-12-01 00:11:00 +01:00
if ( isset ( $atts [ 'ids' ] ) ) {
2013-03-27 21:37:34 +01:00
$images = explode ( ',' , $atts [ 'ids' ] );
2017-12-01 00:11:00 +01:00
}
2013-03-27 21:37:34 +01:00
}
if ( ! $images ) {
2017-12-01 00:11:00 +01:00
$images = get_posts (
array (
'fields' => 'ids' ,
'numberposts' => 999 ,
'order' => 'ASC' ,
'orderby' => 'menu_order' ,
'post_mime_type' => 'image' ,
'post_parent' => get_the_ID (),
'post_type' => 'attachment' ,
)
);
2013-03-27 21:37:34 +01:00
}
return $images ;
}
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 Ten 2.4
*
* @ param array $args Arguments for tag cloud widget .
* @ return array The filtered arguments for tag cloud widget .
*/
function twentyten_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' , 'twentyten_widget_tag_cloud_args' );
2018-12-14 02:46:38 +01:00
/**
* Enqueue scripts and styles for front end .
*
* @ since Twenty Ten 2.6
*/
function twentyten_scripts_styles () {
// Theme block stylesheet.
2019-08-08 03:25:58 +02:00
wp_enqueue_style ( 'twentyten-block-style' , get_template_directory_uri () . '/blocks.css' , array (), '20181218' );
2018-12-14 02:46:38 +01:00
}
add_action ( 'wp_enqueue_scripts' , 'twentyten_scripts_styles' );
/**
2018-12-19 04:30:41 +01:00
* Enqueue styles for the block - based editor .
2018-12-14 02:46:38 +01:00
*
* @ since Twenty Ten 2.6
*/
function twentyten_block_editor_styles () {
// Block styles.
2019-08-08 03:25:58 +02:00
wp_enqueue_style ( 'twentyten-block-editor-style' , get_template_directory_uri () . '/editor-blocks.css' , array (), '20181218' );
2018-12-14 02:46:38 +01:00
}
add_action ( 'enqueue_block_editor_assets' , 'twentyten_block_editor_styles' );
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 Ten 2.9
*/
function wp_body_open () {
/**
* Triggered after the opening < body > tag .
*
* @ since Twenty Ten 2.9
*/
do_action ( 'wp_body_open' );
}
endif ;