diff --git a/src/wp-content/themes/twentyfourteen/functions.php b/src/wp-content/themes/twentyfourteen/functions.php
index f6db24f3c1..5660c9cf16 100644
a
|
b
|
add_action( 'after_setup_theme', 'twentyfourteen_setup' ); |
226 | 226 | * Adjust content_width value for image attachment template. |
227 | 227 | * |
228 | 228 | * @since Twenty Fourteen 1.0 |
| 229 | * |
| 230 | * @global int $content_width |
229 | 231 | */ |
230 | 232 | function twentyfourteen_content_width() { |
231 | 233 | if ( is_attachment() && wp_attachment_is_image() ) { |
diff --git a/src/wp-content/themes/twentyfourteen/inc/widgets.php b/src/wp-content/themes/twentyfourteen/inc/widgets.php
index 48844a3730..56116fe808 100644
a
|
b
|
class Twenty_Fourteen_Ephemera_Widget extends WP_Widget { |
66 | 66 | * Output the HTML for this widget. |
67 | 67 | * |
68 | 68 | * @since Twenty Fourteen 1.0 |
| 69 | * |
| 70 | * @global int $content_width |
69 | 71 | * |
70 | 72 | * @param array $args An array of standard parameters for widgets in this theme. |
71 | 73 | * @param array $instance An array of settings for this widget instance. |
diff --git a/src/wp-content/themes/twentyseventeen/functions.php b/src/wp-content/themes/twentyseventeen/functions.php
index 9c54612d6a..61c4c017d9 100644
a
|
b
|
function twentyseventeen_content_width() { |
275 | 275 | * Filters Twenty Seventeen content width of the theme. |
276 | 276 | * |
277 | 277 | * @since Twenty Seventeen 1.0 |
| 278 | * |
| 279 | * @global int $content_width |
278 | 280 | * |
279 | 281 | * @param int $content_width Content width in pixels. |
280 | 282 | */ |
diff --git a/src/wp-includes/class-wp-editor.php b/src/wp-includes/class-wp-editor.php
index bd73540bc9..7335e4ea39 100644
a
|
b
|
final class _WP_Editors { |
148 | 148 | * Outputs the HTML for a single instance of the editor. |
149 | 149 | * |
150 | 150 | * @since 3.3.0 |
| 151 | * |
| 152 | * @global WP_Screen $current_screen WordPress current screen object. |
151 | 153 | * |
152 | 154 | * @param string $content Initial content for the editor. |
153 | 155 | * @param string $editor_id HTML ID for the textarea and TinyMCE and Quicktags instances. |
diff --git a/src/wp-includes/option.php b/src/wp-includes/option.php
index 36bfcf6755..86f5ce1aa7 100644
a
|
b
|
function register_initial_settings() { |
2668 | 2668 | * |
2669 | 2669 | * @global array $new_allowed_options |
2670 | 2670 | * @global array $wp_registered_settings |
| 2671 | * @global array $new_whitelist_options |
2671 | 2672 | * |
2672 | 2673 | * @param string $option_group A settings group name. Should correspond to an allowed option key name. |
2673 | 2674 | * Default allowed option key names include 'general', 'discussion', 'media', |
… |
… |
function register_setting( $option_group, $option_name, $args = array() ) { |
2792 | 2793 | * |
2793 | 2794 | * @global array $new_allowed_options |
2794 | 2795 | * @global array $wp_registered_settings |
| 2796 | * @global array $new_whitelist_options |
2795 | 2797 | * |
2796 | 2798 | * @param string $option_group The settings group name used during registration. |
2797 | 2799 | * @param string $option_name The name of the option to unregister. |