summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/modules/theme-tools/content-options/featured-images.php')
-rw-r--r--plugins/jetpack/modules/theme-tools/content-options/featured-images.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/jetpack/modules/theme-tools/content-options/featured-images.php b/plugins/jetpack/modules/theme-tools/content-options/featured-images.php
index 52ebe7fb..d6855f6c 100644
--- a/plugins/jetpack/modules/theme-tools/content-options/featured-images.php
+++ b/plugins/jetpack/modules/theme-tools/content-options/featured-images.php
@@ -74,7 +74,7 @@ function jetpack_is_shop_page() {
$current_page_id = $wp_query->get( 'page_id' );
$is_static_front_page = 'page' === get_option( 'show_on_front' );
- if ( $is_static_front_page && $front_page_id === $current_page_id ) {
+ if ( $is_static_front_page && $front_page_id === $current_page_id ) {
$is_shop_page = ( $current_page_id === wc_get_page_id( 'shop' ) ) ? true : false;
} else {
$is_shop_page = is_shop();