diff --git a/global.wordpress.org/public_html/wp-content/themes/rosetta/functions.php b/global.wordpress.org/public_html/wp-content/themes/rosetta/functions.php
index ee4125a34..52d2f20b0 100644
|
a
|
b
|
function rosetta_after_setup_theme() { |
| 14 | 14 | add_theme_support( 'automatic-feed-links' ); |
| 15 | 15 | |
| 16 | 16 | add_theme_support( 'html5', array( |
| 17 | | 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' |
| | 17 | 'search-form', |
| | 18 | 'comment-form', |
| | 19 | 'comment-list', |
| | 20 | 'gallery', |
| | 21 | 'caption', |
| | 22 | 'style', |
| | 23 | 'script', |
| 18 | 24 | ) ); |
| 19 | 25 | |
| 20 | 26 | add_theme_support( 'custom-header', array( |
diff --git a/wordcamp.org/public_html/wp-content/themes/campsite-2017/functions.php b/wordcamp.org/public_html/wp-content/themes/campsite-2017/functions.php
index 0e185492a..cdc9a6fb5 100644
|
a
|
b
|
function setup_theme() { |
| 30 | 30 | |
| 31 | 31 | add_theme_support( |
| 32 | 32 | 'html5', |
| 33 | | array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' ) |
| | 33 | array( |
| | 34 | 'search-form', |
| | 35 | 'comment-form', |
| | 36 | 'comment-list', |
| | 37 | 'gallery', |
| | 38 | 'caption', |
| | 39 | 'style', |
| | 40 | 'script', |
| | 41 | ) |
| 34 | 42 | ); |
| 35 | 43 | |
| 36 | 44 | add_theme_support( |
diff --git a/wordpress.org/public_html/wp-content/themes/pub/gutenberg/functions.php b/wordpress.org/public_html/wp-content/themes/pub/gutenberg/functions.php
index 9674c4f01..6c540febd 100644
|
a
|
b
|
if ( ! function_exists( 'gutenbergtheme_setup' ) ) : |
| 801 | 801 | 'comment-list', |
| 802 | 802 | 'gallery', |
| 803 | 803 | 'caption', |
| | 804 | 'style', |
| | 805 | 'script', |
| 804 | 806 | ) ); |
| 805 | 807 | |
| 806 | 808 | add_theme_support( 'align-wide' ); |
diff --git a/wordpress.org/public_html/wp-content/themes/pub/wporg-apps/functions.php b/wordpress.org/public_html/wp-content/themes/pub/wporg-apps/functions.php
index fa25807f3..fe62ce4c2 100644
|
a
|
b
|
function wpmobileapps_setup() { |
| 55 | 55 | 'search-form', |
| 56 | 56 | 'comment-form', |
| 57 | 57 | 'gallery', |
| | 58 | 'style', |
| | 59 | 'script', |
| 58 | 60 | ) ); |
| 59 | 61 | |
| 60 | 62 | // Enable support for title tag. |
diff --git a/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/functions.php b/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/functions.php
index d432f77f5..1605a280c 100644
|
a
|
b
|
function setup() { |
| 37 | 37 | 'comment-list', |
| 38 | 38 | 'gallery', |
| 39 | 39 | 'caption', |
| | 40 | 'style', |
| | 41 | 'script', |
| 40 | 42 | ) ); |
| 41 | 43 | |
| 42 | 44 | add_theme_support( 'wp4-styles' ); |
diff --git a/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php b/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php
index 258dd3114..5e7efcdf8 100644
|
a
|
b
|
function wporg_themes_setup() { |
| 19 | 19 | load_theme_textdomain( 'wporg-themes' ); |
| 20 | 20 | |
| 21 | 21 | add_theme_support( 'html5', array( |
| 22 | | 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' |
| | 22 | 'search-form', |
| | 23 | 'comment-form', |
| | 24 | 'comment-list', |
| | 25 | 'gallery', |
| | 26 | 'caption', |
| | 27 | 'style', |
| | 28 | 'script', |
| 23 | 29 | ) ); |
| 24 | 30 | |
| 25 | 31 | // No need for canonical lookups |
diff --git a/wordpress.org/public_html/wp-content/themes/pub/wporg/functions.php b/wordpress.org/public_html/wp-content/themes/pub/wporg/functions.php
index 29346bb2e..b62366192 100644
|
a
|
b
|
function setup() { |
| 49 | 49 | 'comment-list', |
| 50 | 50 | 'gallery', |
| 51 | 51 | 'caption', |
| | 52 | 'style', |
| | 53 | 'script', |
| 52 | 54 | ) ); |
| 53 | 55 | |
| 54 | 56 | // Set up the WordPress core custom background feature. |