From 4ba652edfec4bf317a5bc85148683bb4fbef1ef0 Mon Sep 17 00:00:00 2001 From: IanDelMar <42134098+IanDelMar@users.noreply.github.com> Date: Sun, 6 Oct 2019 09:59:56 +0200 Subject: [PATCH] Fix typo --- inc/template-tags.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/template-tags.php b/inc/template-tags.php index 2beb880..8abdb1e 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -104,10 +104,10 @@ if ( ! function_exists( 'understrap_categorized_blog' ) ) { set_transient( 'understrap_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { - // This blog has more than 1 category so components_categorized_blog should return true. + // This blog has more than 1 category so understrap_categorized_blog should return true. return true; } else { - // This blog has only 1 category so components_categorized_blog should return false. + // This blog has only 1 category so understrap_categorized_blog should return false. return false; } }