diff --git a/src/wp-content/themes/twentyfourteen/functions.php b/src/wp-content/themes/twentyfourteen/functions.php
index 91c65384ae..6c15c8ae39 100644
a
|
b
|
if ( ! class_exists( 'Featured_Content' ) && 'plugins.php' !== $GLOBALS['pagenow |
721 | 721 | * |
722 | 722 | * Enables installing Twenty Fourteen in WordPress versions before 4.0.0 when the |
723 | 723 | * `is_customize_preview` function was introduced. |
| 724 | * |
| 725 | * @global WP_Customize_Manager $wp_customize Customizer object. |
724 | 726 | */ |
725 | 727 | if ( ! function_exists( 'is_customize_preview' ) ) : |
726 | 728 | function is_customize_preview() { |
diff --git a/src/wp-content/themes/twentyseventeen/front-page.php b/src/wp-content/themes/twentyseventeen/front-page.php
index ceeb10037c..bf490b7e40 100644
a
|
b
|
get_header(); ?> |
38 | 38 | * |
39 | 39 | * @since Twenty Seventeen 1.0 |
40 | 40 | * |
| 41 | * @global int|string $twentyseventeencounter Front page section counter. |
| 42 | * |
41 | 43 | * @param int $num_sections Number of front page sections. |
42 | 44 | */ |
43 | 45 | $num_sections = apply_filters( 'twentyseventeen_front_page_sections', 4 ); |
diff --git a/src/wp-content/themes/twentythirteen/functions.php b/src/wp-content/themes/twentythirteen/functions.php
index 3aad05ed6d..1d456ad48b 100644
a
|
b
|
add_action( 'enqueue_block_editor_assets', 'twentythirteen_block_editor_styles' |
383 | 383 | * |
384 | 384 | * @since Twenty Thirteen 1.0 |
385 | 385 | * |
| 386 | * @global int $paged WordPress archive pagination page count. |
| 387 | * @global int $page WordPress paginated post page count. |
| 388 | * |
386 | 389 | * @param string $title Default title text for current view. |
387 | 390 | * @param string $sep Optional separator. |
388 | 391 | * @return string The filtered title. |
… |
… |
add_filter( 'body_class', 'twentythirteen_body_class' ); |
751 | 754 | * Adjust content_width value for video post formats and attachment templates. |
752 | 755 | * |
753 | 756 | * @since Twenty Thirteen 1.0 |
| 757 | * |
| 758 | * @global int $content_width Content width. |
754 | 759 | */ |
755 | 760 | function twentythirteen_content_width() { |
756 | 761 | global $content_width; |
diff --git a/src/wp-content/themes/twentytwenty/index.php b/src/wp-content/themes/twentytwenty/index.php
index 2efda3596f..0c73e812e3 100644
a
|
b
|
get_header(); |
25 | 25 | $archive_subtitle = ''; |
26 | 26 | |
27 | 27 | if ( is_search() ) { |
| 28 | /** |
| 29 | * @global WP_Query $wp_query WordPress Query object. |
| 30 | */ |
28 | 31 | global $wp_query; |
29 | 32 | |
30 | 33 | $archive_title = sprintf( |