diff --git a/src/wp-includes/theme.php b/src/wp-includes/theme.php
index 48ccd29013..36e11afd76 100644
a
|
b
|
function _remove_theme_support( $feature ) { |
2904 | 2904 | * |
2905 | 2905 | * @global array $_wp_theme_features |
2906 | 2906 | * |
2907 | | * @param string $feature The feature being checked. |
| 2907 | * @param string $feature { |
| 2908 | * The feature being checked. |
| 2909 | * |
| 2910 | * @type string $post-formats |
| 2911 | * @type string $post-thumbnails |
| 2912 | * @type string $custom-background |
| 2913 | * @type string $custom-header |
| 2914 | * @type string $menus |
| 2915 | * @type string $automatic-feed-links |
| 2916 | * @type string $html5 |
| 2917 | * @type string $starter-content |
| 2918 | * @type string $customize-selective-refresh-widgets |
| 2919 | * } |
2908 | 2920 | * @param mixed ...$args Optional extra arguments to be checked against certain features. |
2909 | 2921 | * @return bool True if the current theme supports the feature, false otherwise. |
2910 | 2922 | */ |