From 56b61eb340df567b3619efc0fdf85486f390ad1f Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Fri, 15 Feb 2019 17:27:09 -0500 Subject: [PATCH] Fix previous commit - add '-template' to template string --- sections/interior-page.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sections/interior-page.php b/sections/interior-page.php index cce743a..6e76253 100644 --- a/sections/interior-page.php +++ b/sections/interior-page.php @@ -5,7 +5,7 @@ $template = str_replace( ".php", "", get_page_template_slug( $post->ID ) ); // All child pages of the counties page default to using the county-page template if ( $template == "" && is_in_tree( COUNTIES_PAGE_ID ) ) { - $template = "county-page"; + $template = "county-page-template"; } ?>
-- 2.17.1