From 603e36da77fb3fde1bbe3f9d86ac8acb51a8dc76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Ko=CC=88nemann?= Date: Sun, 15 May 2016 20:41:19 +0200 Subject: [PATCH] Adding new functions to functions.php --- functions.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/functions.php b/functions.php index 3bef430d..e13f94cd 100644 --- a/functions.php +++ b/functions.php @@ -17,6 +17,10 @@ require get_template_directory() . '/inc/setup.php'; */ require get_template_directory() . '/inc/widgets.php'; +/** +* Load functions to secure your WP install. +*/ +require get_template_directory() . '/inc/security.php'; /** * Enqueue scripts and styles. @@ -58,6 +62,12 @@ require get_template_directory() . '/inc/jetpack.php'; */ require get_template_directory() . '/inc/bootstrap-wp-navwalker.php'; +/** +* Load custom WordPress pagination. +*/ +require get_template_directory() . '/inc/bootstrap-wp-pagination.php'; + + /** * Load WooCommerce functions. */