Changeset 60506
- Timestamp:
- 07/24/2025 02:24:09 PM (6 months ago)
- Location:
- trunk/src/wp-content/themes/twentyeleven
- Files:
-
- 4 edited
-
functions.php (modified) (9 diffs)
-
inc/block-patterns.php (modified) (2 diffs)
-
inc/theme-options.php (modified) (5 diffs)
-
inc/widgets.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/functions.php
r59832 r60506 299 299 300 300 /** 301 * Enqueue scripts and styles for front end.301 * Enqueues scripts and styles for front end. 302 302 * 303 303 * @since Twenty Eleven 2.9 … … 310 310 311 311 /** 312 * Enqueue styles for the block-based editor.312 * Enqueues styles for the block-based editor. 313 313 * 314 314 * @since Twenty Eleven 2.9 … … 474 474 475 475 /** 476 * Set the post excerpt length to 40 words.476 * Sets the post excerpt length to 40 words. 477 477 * 478 478 * To override this length in a child theme, remove … … 525 525 526 526 /** 527 * Add a pretty "Continue Reading" link to custom post excerpts.527 * Adds a pretty "Continue Reading" link to custom post excerpts. 528 528 * 529 529 * To override this link in a child theme, remove the filter and add your own … … 544 544 545 545 /** 546 * Show a home link for the wp_nav_menu() fallback, wp_page_menu().546 * Shows a home link for the wp_nav_menu() fallback, wp_page_menu(). 547 547 * 548 548 * @since Twenty Eleven 1.0 … … 560 560 561 561 /** 562 * Register sidebars and widgetized areas.562 * Registers sidebars and widgetized areas. 563 563 * 564 564 * Also register the default Ephemera widget. … … 633 633 if ( ! function_exists( 'twentyeleven_content_nav' ) ) : 634 634 /** 635 * Display navigation to next/previous pages when applicable.635 * Displays navigation to next/previous pages when applicable. 636 636 * 637 637 * @since Twenty Eleven 1.0 … … 852 852 853 853 /** 854 * Add two classes to the array of body classes.854 * Adds two classes to the array of body classes. 855 855 * 856 856 * The first is if the site has only had one author with published posts. … … 877 877 878 878 /** 879 * Retrieve the IDs for images in a gallery.879 * Retrieves the IDs for images in a gallery. 880 880 * 881 881 * @uses get_post_galleries() First, if available. Falls back to shortcode parsing, -
trunk/src/wp-content/themes/twentyeleven/inc/block-patterns.php
r60244 r60506 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/twentyeleven/inc/theme-options.php
r60159 r60506 25 25 26 26 /** 27 * Register the form setting for our twentyeleven_options array.27 * Registers the form setting for our twentyeleven_options array. 28 28 * 29 29 * This function is attached to the admin_init action hook. … … 85 85 86 86 /** 87 * Add a theme options page to the admin menu, including some help documentation.87 * Adds a theme options page to the admin menu, including some help documentation. 88 88 * 89 89 * This function is attached to the admin_menu action hook. … … 410 410 411 411 /** 412 * Enqueue the styles for the current color scheme.412 * Enqueues the styles for the current color scheme. 413 413 * 414 414 * @since Twenty Eleven 1.0 … … 434 434 435 435 /** 436 * Add a style block to the theme for the current link color.436 * Adds a style block to the theme for the current link color. 437 437 * 438 438 * This function is attached to the wp_head action hook. … … 483 483 484 484 /** 485 * Add Twenty Eleven layout classes to the array of body classes.485 * Adds Twenty Eleven layout classes to the array of body classes. 486 486 * 487 487 * @since Twenty Eleven 1.0 -
trunk/src/wp-content/themes/twentyeleven/inc/widgets.php
r59200 r60506 182 182 183 183 /** 184 * Set up the widget form.184 * Sets up the widget form. 185 185 * 186 186 * Displays the form for this widget on the Widgets page of the WP Admin area.
Note: See TracChangeset
for help on using the changeset viewer.