Adding new functions to functions.php
This commit is contained in:
parent
f84b897e33
commit
603e36da77
|
@ -17,6 +17,10 @@ require get_template_directory() . '/inc/setup.php';
|
||||||
*/
|
*/
|
||||||
require get_template_directory() . '/inc/widgets.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.
|
* Enqueue scripts and styles.
|
||||||
|
@ -58,6 +62,12 @@ require get_template_directory() . '/inc/jetpack.php';
|
||||||
*/
|
*/
|
||||||
require get_template_directory() . '/inc/bootstrap-wp-navwalker.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.
|
* Load WooCommerce functions.
|
||||||
*/
|
*/
|
||||||
|
|
Reference in New Issue