summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/modules/theme-tools/content-options.php')
-rw-r--r--plugins/jetpack/modules/theme-tools/content-options.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/jetpack/modules/theme-tools/content-options.php b/plugins/jetpack/modules/theme-tools/content-options.php
index b8349581..5a97aee8 100644
--- a/plugins/jetpack/modules/theme-tools/content-options.php
+++ b/plugins/jetpack/modules/theme-tools/content-options.php
@@ -85,9 +85,9 @@ function jetpack_featured_images_get_settings() {
function jetpack_featured_images_should_load() {
$opts = jetpack_featured_images_get_settings();
- // If the theme doesn't support archive, post and page or if all the options are ticked, don't continue.
+ // If the theme doesn't support archive, post and page or if all the options are ticked and we aren't in the customizer, don't continue.
if ( ( true !== $opts['archive'] && true !== $opts['post'] && true !== $opts['page'] )
- || ( 1 === $opts['archive-option'] && 1 === $opts['post-option'] && 1 === $opts['page-option'] ) ) {
+ || ( 1 === $opts['archive-option'] && 1 === $opts['post-option'] && 1 === $opts['page-option'] && ! is_customize_preview() ) ) {
return false;
}