@@ -298,7 +298,7 @@ function twentyeleven_setup() {
298
298
endif ; // twentyeleven_setup()
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
304
304
*/
@@ -309,7 +309,7 @@ function twentyeleven_scripts_styles() {
309
309
add_action ( 'wp_enqueue_scripts ' , 'twentyeleven_scripts_styles ' );
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
315
315
*/
@@ -473,7 +473,7 @@ function twentyeleven_header_image() {
473
473
endif ; // twentyeleven_header_image()
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
479
479
* the filter and add your own function tied to
@@ -524,7 +524,7 @@ function twentyeleven_auto_excerpt_more( $more ) {
524
524
add_filter ( 'excerpt_more ' , 'twentyeleven_auto_excerpt_more ' );
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
530
530
* function tied to the get_the_excerpt filter hook.
@@ -543,7 +543,7 @@ function twentyeleven_custom_excerpt_more( $output ) {
543
543
add_filter ( 'get_the_excerpt ' , 'twentyeleven_custom_excerpt_more ' );
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
549
549
*
@@ -559,7 +559,7 @@ function twentyeleven_page_menu_args( $args ) {
559
559
add_filter ( 'wp_page_menu_args ' , 'twentyeleven_page_menu_args ' );
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.
565
565
*
@@ -632,7 +632,7 @@ function twentyeleven_widgets_init() {
632
632
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
638
638
*
@@ -851,7 +851,7 @@ function twentyeleven_posted_on() {
851
851
endif ;
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.
857
857
* The second is if a singular post being displayed
@@ -876,7 +876,7 @@ function twentyeleven_body_classes( $classes ) {
876
876
add_filter ( 'body_class ' , 'twentyeleven_body_classes ' );
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,
882
882
* then as last option uses a get_posts() call.
0 commit comments