CARVIEW |
Select Language
HTTP/2 200
server: nginx
date: Wed, 15 Oct 2025 22:05:59 GMT
content-type: text/html;charset=utf-8
vary: Accept-Encoding
etag: W/"anonymous/Thu, 24 Jul 2025 15:00:42 GMT/91cc240153ed647be3d86de89449ed93"
cache-control: must-revalidate
alt-svc: h3=":443"; ma=86400
x-nc: MISS
content-encoding: gzip
Changeset 60509 for trunk/src/wp-content/themes/twentyten – WordPress Trac
Changeset 60509 for trunk/src/wp-content/themes/twentyten
- Timestamp:
- 07/24/2025 03:00:42 PM (3 months ago)
- Author:
- SergeyBiryukov
- Message:
-
Twenty Ten: Use third-person singular verbs for some more function descriptions.
Reference: PHP Documentation Standards: Documenting Tips.
Follow-up to [60505], [60507].
See #63692.
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyten/functions.php
r60505 r60509 42 42 43 43 /* 44 * Set sthe 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 … … 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 … … 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(). … … 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 … … 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 … … 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. … … 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 … … 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 … … 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 … … 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 … … 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.
Note: See TracChangeset
for help on using the changeset viewer.