41
41
*/
42
42
43
43
/*
44
- * Sets the content width based on the theme's design and stylesheet.
44
+ * Set the content width based on the theme's design and stylesheet.
45
45
*
46
46
* Used to set the width of images and content. Should be equal to the width the theme
47
47
* is designed for, generally via the style.css stylesheet.
55
55
56
56
if ( ! function_exists ( 'twentyten_setup ' ) ) :
57
57
/**
58
- * Set up theme defaults and registers support for various WordPress features.
58
+ * Sets up theme defaults and registers support for various WordPress features.
59
59
*
60
60
* Note that this function is hooked into the after_setup_theme hook, which runs
61
61
* before the init hook. The init hook is too late for some features, such as indicating
@@ -267,7 +267,7 @@ function twentyten_setup() {
267
267
268
268
if ( ! function_exists ( 'twentyten_admin_header_style ' ) ) :
269
269
/**
270
- * Style the header image displayed on the Appearance > Header admin panel.
270
+ * Styles the header image displayed on the Appearance > Header admin panel.
271
271
*
272
272
* Referenced via add_custom_image_header() in twentyten_setup().
273
273
*
@@ -293,7 +293,7 @@ function twentyten_admin_header_style() {
293
293
294
294
if ( ! function_exists ( 'twentyten_header_image ' ) ) :
295
295
/**
296
- * Custom header image markup displayed .
296
+ * Displays the custom header image markup.
297
297
*
298
298
* @since Twenty Ten 4.0
299
299
*/
@@ -359,7 +359,7 @@ function twentyten_excerpt_length( $length ) {
359
359
360
360
if ( ! function_exists ( 'twentyten_continue_reading_link ' ) ) :
361
361
/**
362
- * Return a "Continue Reading" link for excerpts.
362
+ * Returns a "Continue Reading" link for excerpts.
363
363
*
364
364
* @since Twenty Ten 1.0
365
365
*
@@ -371,7 +371,7 @@ function twentyten_continue_reading_link() {
371
371
endif ;
372
372
373
373
/**
374
- * Replace "[...]" with an ellipsis and twentyten_continue_reading_link().
374
+ * Replaces "[...]" with an ellipsis and twentyten_continue_reading_link().
375
375
*
376
376
* "[...]" is appended to automatically generated excerpts.
377
377
*
@@ -411,7 +411,7 @@ function twentyten_custom_excerpt_more( $output ) {
411
411
add_filter ( 'get_the_excerpt ' , 'twentyten_custom_excerpt_more ' );
412
412
413
413
/**
414
- * Remove inline styles printed when the gallery shortcode is used.
414
+ * Removes inline styles printed when the gallery shortcode is used.
415
415
*
416
416
* Galleries are styled by the theme in Twenty Ten's style.css. This is just
417
417
* a simple filter call that tells WordPress to not use the default styles.
@@ -620,7 +620,7 @@ function twentyten_widgets_init() {
620
620
add_action ( 'widgets_init ' , 'twentyten_widgets_init ' );
621
621
622
622
/**
623
- * Remove the default styles that are packaged with the Recent Comments widget.
623
+ * Removes the default styles that are packaged with the Recent Comments widget.
624
624
*
625
625
* To override this in a child theme, remove the filter and optionally add your own
626
626
* function tied to the widgets_init action hook.
@@ -638,7 +638,7 @@ function twentyten_remove_recent_comments_style() {
638
638
639
639
if ( ! function_exists ( 'twentyten_posted_on ' ) ) :
640
640
/**
641
- * Print HTML with meta information for the current post-date/time and author.
641
+ * Prints HTML with meta information for the current post-date/time and author.
642
642
*
643
643
* @since Twenty Ten 1.0
644
644
*/
@@ -666,7 +666,7 @@ function twentyten_posted_on() {
666
666
667
667
if ( ! function_exists ( 'twentyten_posted_in ' ) ) :
668
668
/**
669
- * Print HTML with meta information for the current post (category, tags and permalink).
669
+ * Prints HTML with meta information for the current post (category, tags and permalink).
670
670
*
671
671
* @since Twenty Ten 1.0
672
672
*/
@@ -794,7 +794,7 @@ function twentyten_register_block_patterns() {
794
794
795
795
if ( ! function_exists ( 'wp_body_open ' ) ) :
796
796
/**
797
- * Fire the wp_body_open action.
797
+ * Fires the wp_body_open action.
798
798
*
799
799
* Added for backward compatibility to support pre-5.2.0 WordPress versions.
800
800
*
0 commit comments