Changeset 60505
- Timestamp:
- 07/24/2025 02:22:46 PM (5 months ago)
- Location:
- trunk/src/wp-content/themes/twentyten
- Files:
-
- 2 edited
-
block-patterns.php (modified) (2 diffs)
-
functions.php (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyten/block-patterns.php
r54405 r60505 12 12 13 13 /** 14 * Register Block Pattern Category.14 * Registers Block Pattern Category. 15 15 */ 16 16 if ( function_exists( 'register_block_pattern_category' ) ) { … … 23 23 24 24 /** 25 * Register Block Patterns.25 * Registers Block Patterns. 26 26 */ 27 27 if ( function_exists( 'register_block_pattern' ) ) { -
trunk/src/wp-content/themes/twentyten/functions.php
r60159 r60505 42 42 43 43 /* 44 * Set the content width based on the theme's design and stylesheet.44 * Sets 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 … … 325 325 326 326 /** 327 * Show a home link for our wp_nav_menu() fallback, wp_page_menu().327 * Shows a home link for our wp_nav_menu() fallback, wp_page_menu(). 328 328 * 329 329 * To override this in a child theme, remove the filter and optionally add … … 343 343 344 344 /** 345 * Set the post excerpt length to 40 characters.345 * Sets the post excerpt length to 40 characters. 346 346 * 347 347 * To override this length in a child theme, remove the filter and add your own … … 393 393 394 394 /** 395 * Add a pretty "Continue Reading" link to custom post excerpts.395 * Adds a pretty "Continue Reading" link to custom post excerpts. 396 396 * 397 397 * To override this link in a child theme, remove the filter and add your own … … 529 529 530 530 /** 531 * Register widgetized areas, including two sidebars and four widget-ready columns in the footer.531 * Registers widgetized areas, including two sidebars and four widget-ready columns in the footer. 532 532 * 533 533 * To override twentyten_widgets_init() in a child theme, remove the action hook and add your own … … 698 698 699 699 /** 700 * Retrieve the IDs for images in a gallery.700 * Retrieves the IDs for images in a gallery. 701 701 * 702 702 * @uses get_post_galleries() First, if available. Falls back to shortcode parsing, … … 761 761 762 762 /** 763 * Enqueue scripts and styles for front end.763 * Enqueues scripts and styles for front end. 764 764 * 765 765 * @since Twenty Ten 2.6 … … 772 772 773 773 /** 774 * Enqueue styles for the block-based editor.774 * Enqueues styles for the block-based editor. 775 775 * 776 776 * @since Twenty Ten 2.6 … … 783 783 784 784 /** 785 * Register block patterns and pattern categories.785 * Registers block patterns and pattern categories. 786 786 * 787 787 * @since Twenty Ten 4.3
Note: See TracChangeset
for help on using the changeset viewer.