From 2b50585a1437861f099a034993005fda84b53f64 Mon Sep 17 00:00:00 2001 From: Braad Martin Date: Sun, 12 Jul 2015 10:38:17 -0700 Subject: [PATCH] Fix detection of logo for body class --- includes/functions/theme-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions/theme-functions.php b/includes/functions/theme-functions.php index 97afe95..aeaa964 100755 --- a/includes/functions/theme-functions.php +++ b/includes/functions/theme-functions.php @@ -195,7 +195,7 @@ function trestle_body_classes( $classes ) { } // Add logo class. - if ( trestle_get_option( 'logo_url' ) || trestle_get_option( 'logo_url_mobile' ) ) { + if ( trestle_get_option( 'logo_id' ) || trestle_get_option( 'logo_id_mobile' ) ) { $classes[] = 'has-logo'; }