From 3723546d81ef14405e64cbca443e25e7bf8c53f8 Mon Sep 17 00:00:00 2001 From: IanDelMar <42134098+IanDelMar@users.noreply.github.com> Date: Thu, 9 Aug 2018 22:00:43 +0200 Subject: [PATCH] Fix for Issue #769 missing hooks.php in functions.php. causes footer.php to call an undefined function --- functions.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/functions.php b/functions.php index 813e68a..18b407f 100644 --- a/functions.php +++ b/functions.php @@ -35,6 +35,11 @@ require get_template_directory() . '/inc/template-tags.php'; */ require get_template_directory() . '/inc/pagination.php'; +/** + * Custom hooks. + */ +require get_template_directory() . '/inc/hooks.php'; + /** * Custom functions that act independently of the theme templates. */